]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
nsis: Fix build for 64 bit installer
authorStefan Weil <sw@weilnetz.de>
Wed, 25 Nov 2020 19:18:33 +0000 (20:18 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 26 Nov 2020 14:20:48 +0000 (09:20 -0500)
Pass cpu instead of cpu_family to the NSIS installer script.

That script checks for "x86_64" which is the cpu value,
while cpu_family is "x86".

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20201125191833.964753-1-sw@weilnetz.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
meson.build

index 360623ece9546991b1e610d77a1f2f99b5adb8f4..e3386196ba4106a973edb7f9d07ce9576c11981c 100644 (file)
@@ -1955,7 +1955,7 @@ if host_machine.system() == 'windows'
     '@OUTPUT@',
     get_option('prefix'),
     meson.current_source_dir(),
-    host_machine.cpu_family(),
+    host_machine.cpu(),
     '--',
     '-DDISPLAYVERSION=' + meson.project_version(),
   ]