aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2022-01-14 12:43:11 +0400
committerPaolo Bonzini <pbonzini@redhat.com>2022-01-27 12:08:31 +0100
commit6bee09602100081c25e81573deb92cd22a6d7fec (patch)
tree60669f967d48ed0619214d4a22887a3a912fa35b
parent861aa79ad8bc1769b6eaf4bdde426decd3d947b8 (diff)
downloadqemu-6bee09602100081c25e81573deb92cd22a6d7fec.zip
qemu-6bee09602100081c25e81573deb92cd22a6d7fec.tar.gz
qemu-6bee09602100081c25e81573deb92cd22a6d7fec.tar.bz2
build-sys: fix undefined ARCH error
../qga/meson.build:76:4: ERROR: Key ARCH is not in the dictionary. Fixes commit 823eb013 ("configure, meson: move ARCH to meson.build") Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20220114084312.3725242-1-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--qga/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/qga/meson.build b/qga/meson.build
index cfb1fbc..613ecb9 100644
--- a/qga/meson.build
+++ b/qga/meson.build
@@ -75,7 +75,7 @@ if targetos == 'windows'
endif
qga_msi = custom_target('QGA MSI',
input: files('installer/qemu-ga.wxs'),
- output: 'qemu-ga-@0@.msi'.format(config_host['ARCH']),
+ output: 'qemu-ga-@0@.msi'.format(host_arch),
depends: deps,
command: [
find_program('env'),