From: Bruce Richardson Date: Mon, 8 Apr 2019 09:46:36 +0000 (+0100) Subject: examples/vhost_scsi: fix header check for meson build X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=f38020697976ad9b6baef5d45e393ed1db827083 examples/vhost_scsi: fix header check for meson build The header check for the example app was looking for virtio_scsi.h without the "linux/" prefix, which meant it was never getting found when it should have been. Fixes: 8d47a753b7cb ("examples/vhost_scsi: disable build if missing dependency") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Reviewed-by: Tiwei Bie --- diff --git a/examples/vhost_scsi/meson.build b/examples/vhost_scsi/meson.build index 2e9339aa73..2972e4d613 100644 --- a/examples/vhost_scsi/meson.build +++ b/examples/vhost_scsi/meson.build @@ -10,7 +10,7 @@ if not is_linux build = false endif -if not cc.has_header('virtio_scsi.h') +if not cc.has_header('linux/virtio_scsi.h') build = false endif