diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-10-16 03:19:14 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-10-26 07:08:38 -0400 |
commit | 16bf7a3326d8e8be42b3bf844a6c539d52a997b3 (patch) | |
tree | e2e5d5904c3bd3a8481b3bd87a95bf66962802fd /contrib/vhost-user-gpu | |
parent | fe0038bec26fdac2256db43894d55d1a6f798c0f (diff) | |
download | qemu-16bf7a3326d8e8be42b3bf844a6c539d52a997b3.zip qemu-16bf7a3326d8e8be42b3bf844a6c539d52a997b3.tar.gz qemu-16bf7a3326d8e8be42b3bf844a6c539d52a997b3.tar.bz2 |
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 7d9b29d..37ecca1 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 |