summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-05-01 10:59:51 +0100
committerRichard W.M. Jones <rjones@redhat.com>2009-05-01 10:59:51 +0100
commitaf5087450063fe013ac2df4db39451d7da6152a3 (patch)
treef93939459d5d9c62d22452649f1b9485d2e874b1 /configure.ac
parent65f77271f290eca1d8b91d16fc6e123037f86229 (diff)
downloadlibguestfs-af5087450063fe013ac2df4db39451d7da6152a3.tar.gz
libguestfs-af5087450063fe013ac2df4db39451d7da6152a3.tar.xz
libguestfs-af5087450063fe013ac2df4db39451d7da6152a3.zip
Always look for qemu-kvm, even on non-x86_64 platform.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 7c485aaa..90c3d472 100644
--- a/configure.ac
+++ b/configure.ac
@@ -58,11 +58,7 @@ test "x$POD2TEXT" = "xno" &&
dnl Check for QEMU for running binaries on this $host_cpu, fall
dnl back to basic 'qemu'. Allow the user to override it.
-default_qemu="qemu-system-$host_cpu qemu"
-# On x86-64, try using KVM first.
-if test "x$host_cpu" = "xx86_64"; then
- default_qemu="qemu-kvm $default_qemu"
-fi
+default_qemu="qemu-kvm qemu-system-$host_cpu qemu"
AC_ARG_WITH([qemu],
[AS_HELP_STRING([--with-qemu],
[set default QEMU binary @<:@default=[qemu-kvm] qemu-system-<host> qemu@:>@])],