summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-07-17 16:32:05 +0100
committerRichard W.M. Jones <rjones@redhat.com>2009-07-17 16:32:05 +0100
commitb993f75d55240187fb5f62f87e303490bfc68d86 (patch)
tree34c123f83d78d7fbee02aed5630cc00a947db1de
parent2ab233b3124f4dd3e7c686de110d9a97cc525c18 (diff)
downloadlibguestfs-b993f75d55240187fb5f62f87e303490bfc68d86.tar.gz
libguestfs-b993f75d55240187fb5f62f87e303490bfc68d86.tar.xz
libguestfs-b993f75d55240187fb5f62f87e303490bfc68d86.zip
RHEL 5.4 fix: Check for qemu-kvm binary in /usr/libexec
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 59eeb9da..51d5dcd7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -83,7 +83,7 @@ AC_ARG_WITH([qemu],
[],
[with_qemu="$default_qemu"])
AC_PATH_PROGS([QEMU],[$with_qemu],[no],
- [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin])
+ [$PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/libexec])
test "x$QEMU" = "xno" && AC_MSG_ERROR([qemu must be installed])
AC_DEFINE_UNQUOTED([QEMU],["$QEMU"],[Location of qemu binary.])