From: Michel Normand Date: Wed, 4 Nov 2015 09:01:24 +0000 (+0100) Subject: qemu: add /usr/lib to AC_PATH_PROG for qemu-bridge-helper X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=703ec1b73da3560374cba65017d9eaf58f92c695;p=libvirt.git qemu: add /usr/lib to AC_PATH_PROG for qemu-bridge-helper 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 --- diff --git a/configure.ac b/configure.ac index f01bb40dc4..f481c50c8f 100644 --- a/configure.ac +++ b/configure.ac @@ -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],