aboutsummaryrefslogtreecommitdiff
path: root/pc-bios/meson.build
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2020-08-26 15:04:16 +0400
committerPaolo Bonzini <pbonzini@redhat.com>2020-09-01 08:51:33 -0400
commitab4c0996f80d43d1fc28c6e76f4ecb27423a7e29 (patch)
tree62cbaf2a60cc5c3c47202dc62c112fe51e1e6a76 /pc-bios/meson.build
parent73f3aa3766e64492559e3ec05b5cc2cfde0d2c9e (diff)
downloadqemu-ab4c0996f80d43d1fc28c6e76f4ecb27423a7e29.zip
qemu-ab4c0996f80d43d1fc28c6e76f4ecb27423a7e29.tar.gz
qemu-ab4c0996f80d43d1fc28c6e76f4ecb27423a7e29.tar.bz2
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 'pc-bios/meson.build')
-rw-r--r--pc-bios/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/pc-bios/meson.build b/pc-bios/meson.build
index f608c2c..8087e5c 100644
--- a/pc-bios/meson.build
+++ b/pc-bios/meson.build
@@ -19,7 +19,7 @@ if 'DECOMPRESS_EDK2_BLOBS' in config_host
input: '@0@.bz2'.format(f),
capture: true,
install: install_blobs,
- install_dir: config_host['qemu_datadir'],
+ install_dir: qemu_datadir,
command: [ bzip2, '-dc', '@INPUT0@' ])
endforeach
endif