summaryrefslogtreecommitdiffstats
path: root/fsdev
diff options
context:
space:
mode:
authorPaolo Bonzini2021-01-07 15:57:18 +0100
committerPaolo Bonzini2021-01-12 12:38:03 +0100
commit2c9dce0196883d76e8bcb7142b26ab7587ff3006 (patch)
treeb1afeaa0973fafc49d4be850fc5ed7430bb26e6d /fsdev
parentMerge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2021-01-1... (diff)
downloadqemu-2c9dce0196883d76e8bcb7142b26ab7587ff3006.tar.gz
qemu-2c9dce0196883d76e8bcb7142b26ab7587ff3006.tar.xz
qemu-2c9dce0196883d76e8bcb7142b26ab7587ff3006.zip
meson: do not use CONFIG_VIRTFS
CONFIG_VIRTFS is not anymore part of the config_host dictionary. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'fsdev')
-rw-r--r--fsdev/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsdev/meson.build b/fsdev/meson.build
index 7dd1cc9bfb..65455a179e 100644
--- a/fsdev/meson.build
+++ b/fsdev/meson.build
@@ -8,7 +8,7 @@ fsdev_ss.add(when: ['CONFIG_FSDEV_9P'], if_true: files(
), if_false: files('qemu-fsdev-dummy.c'))
softmmu_ss.add_all(when: 'CONFIG_LINUX', if_true: fsdev_ss)
-have_virtfs_proxy_helper = have_tools and libattr.found() and libcap_ng.found() and 'CONFIG_VIRTFS' in config_host
+have_virtfs_proxy_helper = have_tools and libattr.found() and libcap_ng.found() and have_virtfs
if have_virtfs_proxy_helper
executable('virtfs-proxy-helper',
files('virtfs-proxy-helper.c', '9p-marshal.c', '9p-iov-marshal.c'),