diff options
author | Paolo Bonzini | 2020-10-16 09:19:14 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-10-26 12:08:38 +0100 |
commit | 16bf7a3326d8e8be42b3bf844a6c539d52a997b3 (patch) | |
tree | e2e5d5904c3bd3a8481b3bd87a95bf66962802fd /contrib/vhost-user-gpu | |
parent | configure: allow configuring localedir (diff) | |
download | qemu-16bf7a3326d8e8be42b3bf844a6c539d52a997b3.tar.gz qemu-16bf7a3326d8e8be42b3bf844a6c539d52a997b3.tar.xz qemu-16bf7a3326d8e8be42b3bf844a6c539d52a997b3.zip |
configure: move directory options from config-host.mak to meson
Since installation is not part of Makefiles anymore, Make need not
know the directories anymore. Meson already knows them through
built-in options, do everything using them instead of the config_host
dictionary.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'contrib/vhost-user-gpu')
-rw-r--r-- | contrib/vhost-user-gpu/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/vhost-user-gpu/meson.build b/contrib/vhost-user-gpu/meson.build index 7d9b29da8b..37ecca13ca 100644 --- a/contrib/vhost-user-gpu/meson.build +++ b/contrib/vhost-user-gpu/meson.build @@ -9,6 +9,6 @@ if 'CONFIG_TOOLS' in config_host and 'CONFIG_VIRGL' in config_host \ configure_file(input: '50-qemu-gpu.json.in', output: '50-qemu-gpu.json', - configuration: config_host, + configuration: { 'libexecdir' : get_option('libexecdir') }, install_dir: qemu_datadir / 'vhost-user') endif |