diff options
author | Paolo Bonzini | 2021-12-20 09:28:46 +0100 |
---|---|---|
committer | Paolo Bonzini | 2022-01-12 14:09:06 +0100 |
commit | b962a1d507bdb7e157f5e0ef3376f3e8e40edfe7 (patch) | |
tree | b497acc4710c9e85b3080df9273e1c7415c656ef /contrib/rdmacm-mux | |
parent | configure: move non-command-line variables away from command-line parsing sec... (diff) | |
download | qemu-b962a1d507bdb7e157f5e0ef3376f3e8e40edfe7.tar.gz qemu-b962a1d507bdb7e157f5e0ef3376f3e8e40edfe7.tar.xz qemu-b962a1d507bdb7e157f5e0ef3376f3e8e40edfe7.zip |
meson: build contrib/ executables after generated headers
This will be needed as soon as config-poison.h moves from configure to
a meson custom_target (which is built at "ninja" time).
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'contrib/rdmacm-mux')
-rw-r--r-- | contrib/rdmacm-mux/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/rdmacm-mux/meson.build b/contrib/rdmacm-mux/meson.build index 6cc5016747..7674f54cc5 100644 --- a/contrib/rdmacm-mux/meson.build +++ b/contrib/rdmacm-mux/meson.build @@ -2,7 +2,7 @@ if 'CONFIG_PVRDMA' in config_host # if not found, CONFIG_PVRDMA should not be set # FIXME: broken on big endian architectures libumad = cc.find_library('ibumad', required: true) - executable('rdmacm-mux', files('main.c'), + executable('rdmacm-mux', files('main.c'), genh, dependencies: [glib, libumad], build_by_default: false, install: false) |