Displaying 1 result from an estimated 1 matches for "3a0d25d".
Did you mean:
3a0525f
2016 Nov 11
0
[PATCH] configure: Look for dpkg* only in /usr/bin, /bin
...link /usr/sbin/dpkg-divert ->
../bin/dpkg-divert that recently got removed nd caused
breakage (libguestfs build failures) because configure had chosen the
wrong binary.
---
configure.ac | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac
index 3a0d25d..72ffb92 100644
--- a/configure.ac
+++ b/configure.ac
@@ -110,10 +110,10 @@ AC_PATH_PROG(URPMI,[urpmi],[no], [$PATH$PATH_SEPARATOR/usr/sbin])
dnl For Debian handler.
AC_PATH_PROG(APT_GET,[apt-get],[no])
-AC_PATH_PROG(DPKG,[dpkg],[no])
-AC_PATH_PROG(DPKG_DEB,[dpkg-deb],[no])
-AC_PATH_PROG(DPKG_Q...