diff options
author | Bruce Richardson <bruce.richardson@intel.com> | 2019-04-09 11:55:36 +0100 |
---|---|---|
committer | Thomas Monjalon <thomas@monjalon.net> | 2019-04-17 18:09:52 +0200 |
commit | adf93ca564c73183e1c705cd7f35b98f3a660228 (patch) | |
tree | 43da96af2eb274a918071d2931ddfdab1b87a390 /examples/vhost_scsi | |
parent | b458c2927ab416fd7becfbc740ccfa53f0dfbdd1 (diff) | |
download | dpdk-adf93ca564c73183e1c705cd7f35b98f3a660228.zip dpdk-adf93ca564c73183e1c705cd7f35b98f3a660228.tar.gz dpdk-adf93ca564c73183e1c705cd7f35b98f3a660228.tar.xz |
build: increase readability via shortcut variables
Define variables for "is_linux", "is_freebsd" and "is_windows"
to make the code shorter for comparisons and more readable.
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
Acked-by: Luca Boccassi <bluca@debian.org>
Diffstat (limited to 'examples/vhost_scsi')
-rw-r--r-- | examples/vhost_scsi/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/vhost_scsi/meson.build b/examples/vhost_scsi/meson.build index ca12480..2e9339a 100644 --- a/examples/vhost_scsi/meson.build +++ b/examples/vhost_scsi/meson.build @@ -6,7 +6,7 @@ # To build this example as a standalone application with an already-installed # DPDK instance, use 'make' -if host_machine.system() != 'linux' +if not is_linux build = false endif |