diff options
author | Philippe Mathieu-Daudé | 2021-01-20 16:15:39 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-01-23 21:55:04 +0100 |
commit | 3a489d38fd0076d2f9fc8c60b70aa66290a0a199 (patch) | |
tree | 7b72b6470f05dc2c224a57804e41580cd5b4adda /fsdev | |
parent | build-sys: add libvhost-user missing dependencies (diff) | |
download | qemu-3a489d38fd0076d2f9fc8c60b70aa66290a0a199.tar.gz qemu-3a489d38fd0076d2f9fc8c60b70aa66290a0a199.tar.xz qemu-3a489d38fd0076d2f9fc8c60b70aa66290a0a199.zip |
meson: Declare have_virtfs_proxy_helper in main meson.build
have_virtfs_proxy_helper is used from docs/meson.build, and can be
not declared when including it before fsdev/meson.build. This fixes:
../docs/meson.build:54:2: ERROR: Unknown variable "have_virtfs_proxy_helper".
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210120151539.1166252-1-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'fsdev')
-rw-r--r-- | fsdev/meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fsdev/meson.build b/fsdev/meson.build index 65455a179e..adf57cc43e 100644 --- a/fsdev/meson.build +++ b/fsdev/meson.build @@ -8,7 +8,6 @@ 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 have_virtfs if have_virtfs_proxy_helper executable('virtfs-proxy-helper', files('virtfs-proxy-helper.c', '9p-marshal.c', '9p-iov-marshal.c'), |