aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2012-01-27 17:09:04 +0000
committerIan Campbell <ian.campbell@citrix.com>2012-01-27 17:09:04 +0000
commit34710f4a96bf73d9ef12528bffc560cf8e980ddd (patch)
tree6833686a0df7d3aaf04bc0bff693d17f1cba42ef /tools/libxl
parent43e5afa7c827eb1ccf1c6ebae9b4f5e0c5cc468b (diff)
downloadxen-34710f4a96bf73d9ef12528bffc560cf8e980ddd.tar.gz
xen-34710f4a96bf73d9ef12528bffc560cf8e980ddd.tar.bz2
xen-34710f4a96bf73d9ef12528bffc560cf8e980ddd.zip
libxl: fix upstream qemu binary name to what we actually install
Binary is always qemu-system-i386 even for a 64 bit build. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/libxl')
-rw-r--r--tools/libxl/libxl_dm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
index 3d45cd3978..cbbb43747b 100644
--- a/tools/libxl/libxl_dm.c
+++ b/tools/libxl/libxl_dm.c
@@ -50,7 +50,7 @@ const char *libxl__domain_device_model(libxl__gc *gc,
dm = libxl__abs_path(gc, "qemu-dm", libxl_libexec_path());
break;
case LIBXL_DEVICE_MODEL_VERSION_QEMU_XEN:
- dm = libxl__abs_path(gc, "qemu", libxl_libexec_path());
+ dm = libxl__abs_path(gc, "qemu-system-i386", libxl_libexec_path());
break;
default:
LIBXL__LOG(ctx, LIBXL__LOG_ERROR,