diff options
author | Paolo Bonzini | 2022-04-20 17:33:36 +0200 |
---|---|---|
committer | Paolo Bonzini | 2022-04-28 08:51:57 +0200 |
commit | 6e4442090bd3c9f81643db9ffd8d1a9b44d3e527 (patch) | |
tree | 9b565caff2cb85c53ce2f46548a22b13b73e72ad /qga | |
parent | configure: remove dead code (diff) | |
download | qemu-6e4442090bd3c9f81643db9ffd8d1a9b44d3e527.tar.gz qemu-6e4442090bd3c9f81643db9ffd8d1a9b44d3e527.tar.xz qemu-6e4442090bd3c9f81643db9ffd8d1a9b44d3e527.zip |
qga: wixl: get path to sysroot from pkg-config as intended
The .wxs file uses $(var.Mingw_bin) while configure/meson have always
used Mingw_dlls. Fix them to match what was probably intended.
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qga')
-rw-r--r-- | qga/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qga/meson.build b/qga/meson.build index 392d560941..6d9f39bb32 100644 --- a/qga/meson.build +++ b/qga/meson.build @@ -129,7 +129,7 @@ if targetos == 'windows' wixl, '-o', '@OUTPUT0@', '@INPUT0@', qemu_ga_msi_arch[cpu], qemu_ga_msi_vss, - '-D', 'Mingw_dlls=' + config_host['QEMU_GA_MSI_MINGW_DLL_PATH'], + '-D', 'Mingw_bin=' + config_host['QEMU_GA_MSI_MINGW_BIN_PATH'], ]) all_qga += [qga_msi] alias_target('msi', qga_msi) |