qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH for-5.2] nsis: Fix build for 64 bit installer
@ 2020-11-25 19:18 Stefan Weil
  2020-11-25 19:28 ` Peter Maydell
  2020-11-25 21:24 ` Marc-André Lureau
  0 siblings, 2 replies; 6+ messages in thread
From: Stefan Weil @ 2020-11-25 19:18 UTC (permalink / raw)
  To: qemu-devel, Paolo Bonzini, Marc-André Lureau,
	Daniel P . Berrangé
  Cc: Stefan Weil

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>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index 5062407c70..8a99c948d3 100644
--- a/meson.build
+++ b/meson.build
@@ -1956,7 +1956,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(),
   ]
-- 
2.29.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-11-26  9:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-25 19:18 [PATCH for-5.2] nsis: Fix build for 64 bit installer Stefan Weil
2020-11-25 19:28 ` Peter Maydell
2020-11-25 20:59   ` Stefan Weil
2020-11-26  9:29     ` Daniel P. Berrangé
2020-11-25 21:26   ` Marc-André Lureau
2020-11-25 21:24 ` Marc-André Lureau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).