]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/xen.git/commitdiff
build: use correct qemu emulator binary
authorDoug Goldstein <cardoe@cardoe.com>
Tue, 25 Aug 2015 13:49:49 +0000 (13:49 +0000)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Thu, 27 Aug 2015 18:09:26 +0000 (19:09 +0100)
Per http://wiki.qemu.org/ChangeLog/1.0 and the fact that no currently
supported distro ships the x86 system emulator binary as 'qemu', this
changes the default when a user specifies --with-system-qemu without a
PATH to 'qemu-system-i386', otherwise the default results in a
non-functional setup.

[ Reran autogen.sh -iwj ]

Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
tools/configure
tools/configure.ac

index 1098f1f686025bcaa3da0c4c8967526eb30d4bf2..428b3a5ac80daa02d965c472923eef77c34a6ebb 100755 (executable)
@@ -4265,7 +4265,7 @@ if test "${with_system_qemu+set}" = set; then :
   withval=$with_system_qemu;
     case $withval in
         yes)
-            qemu_xen=n ; qemu_xen_path="qemu"
+            qemu_xen=n ; qemu_xen_path="qemu-system-i386"
             qemu_xen_systemd="/usr/bin/env $qemu_xen_path" ;;
         no)
             qemu_xen=y ;;
index c1fa65828f3a00881560f594b55ca5773bb15b10..7daec99b6ba97acefdac39cdcdc81bc1c96437ef 100644 (file)
@@ -177,7 +177,7 @@ AC_ARG_WITH([system-qemu],
         device model instead of building and installing our own version]),[
     case $withval in
         yes)
-            qemu_xen=n ; qemu_xen_path="qemu"
+            qemu_xen=n ; qemu_xen_path="qemu-system-i386"
             qemu_xen_systemd="/usr/bin/env $qemu_xen_path" ;;
         no)
             qemu_xen=y ;;