From 46f9dd5290668edca2832164349f6f325826d2cd Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Wed, 22 Oct 2014 19:23:18 +0200 Subject: [PATCH] configure: map also amd64 as host_cpu to x86_64 qemu --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8cd29d75e..6174c7c49 100644 --- a/configure.ac +++ b/configure.ac @@ -733,7 +733,8 @@ dnl back to basic 'qemu'. Allow the user to override it. qemu_system="$( echo qemu-system-$host_cpu | $SED -e 's/-i@<:@456@:>@86/-i386/g' \ - -e 's/-arm.*/-arm/g' + -e 's/-arm.*/-arm/g' \ + -e 's/-amd64/-x86_64/g' )" default_qemu="qemu-kvm kvm $qemu_system qemu" AC_ARG_WITH([qemu],