diff options
author | Marc-André Lureau | 2020-08-26 13:04:16 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-09-01 14:51:33 +0200 |
commit | ab4c0996f80d43d1fc28c6e76f4ecb27423a7e29 (patch) | |
tree | 62cbaf2a60cc5c3c47202dc62c112fe51e1e6a76 /contrib/vhost-user-gpu | |
parent | meson: pass qemu_suffix option (diff) | |
download | qemu-ab4c0996f80d43d1fc28c6e76f4ecb27423a7e29.tar.gz qemu-ab4c0996f80d43d1fc28c6e76f4ecb27423a7e29.tar.xz qemu-ab4c0996f80d43d1fc28c6e76f4ecb27423a7e29.zip |
meson: use meson datadir instead of qemu_datadir
When cross-compiling, by default qemu_datadir is 'c:\Program
Files\QEMU', which is not recognized as being an absolute path, and
meson will end up adding the prefix again.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20200826110419.528931-6-marcandre.lureau@redhat.com>
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 12d608c2e7..7d9b29da8b 100644 --- a/contrib/vhost-user-gpu/meson.build +++ b/contrib/vhost-user-gpu/meson.build @@ -10,5 +10,5 @@ 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, - install_dir: config_host['qemu_datadir'] / 'vhost-user') + install_dir: qemu_datadir / 'vhost-user') endif |