]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
qemu: add /usr/lib to AC_PATH_PROG for qemu-bridge-helper
authorMichel Normand <normand@linux.vnet.ibm.com>
Wed, 4 Nov 2015 09:01:24 +0000 (10:01 +0100)
committerJim Fehlig <jfehlig@suse.com>
Wed, 4 Nov 2015 15:04:10 +0000 (08:04 -0700)
For openSUSE the qemu-bridge-helper is installed in /usr/lib
So libvirt has to search it in this directory.

Signed-off-by: Michel Normand <normand@linux.vnet.ibm.com>
configure.ac

index f01bb40dc43b924e02292ea7397c23e54f3704ca..f481c50c8ff0098fc3d58f8b1520b9903134533e 100644 (file)
@@ -2520,7 +2520,7 @@ AC_DEFINE_UNQUOTED([QEMU_USER], ["$QEMU_USER"], [QEMU user account])
 AC_DEFINE_UNQUOTED([QEMU_GROUP], ["$QEMU_GROUP"], [QEMU group account])
 
 AC_PATH_PROG([QEMU_BRIDGE_HELPER], [qemu-bridge-helper], [/usr/libexec/qemu-bridge-helper],
-                  [/usr/libexec:/usr/lib/qemu])
+                  [/usr/libexec:/usr/lib/qemu:/usr/lib])
 AC_DEFINE_UNQUOTED([QEMU_BRIDGE_HELPER], ["$QEMU_BRIDGE_HELPER"], [QEMU bridge helper])
 
 AC_ARG_WITH([macvtap],