修訂 | 6bee09602100081c25e81573deb92cd22a6d7fec (tree) |
---|---|
時間 | 2022-01-27 20:08:31 |
作者 | Marc-André Lureau <marcandre.lureau@redh...> |
Commiter | Paolo Bonzini |
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>
@@ -75,7 +75,7 @@ if targetos == 'windows' | ||
75 | 75 | endif |
76 | 76 | qga_msi = custom_target('QGA MSI', |
77 | 77 | input: files('installer/qemu-ga.wxs'), |
78 | - output: 'qemu-ga-@0@.msi'.format(config_host['ARCH']), | |
78 | + output: 'qemu-ga-@0@.msi'.format(host_arch), | |
79 | 79 | depends: deps, |
80 | 80 | command: [ |
81 | 81 | find_program('env'), |