[Libguestfs] [PATCH] Change fallback name for external supermin helper

Olaf Hering olaf at aepfle.de
Fri May 31 08:41:47 UTC 2013


Use basename of external helper instead of 'no' for external supermin
helpers. This gives a clear error messages what binary is actually
missing, and it is now possible to install the missing package without
recompiling libguestfs. In addition its now also possible to use private
builds of supermin (if they are in PATH) with a given libguestfs binary
package.

Signed-off-by: Olaf Hering <olaf at aepfle.de>
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 30af871..8f025d0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -442,9 +442,9 @@ AC_SUBST([ENABLE_APPLIANCE])
 
 dnl Check for supermin >= 4.1.0 or febootstrap >= 3.20.
 AC_CHECK_PROGS([SUPERMIN],
-               [supermin febootstrap],[no])
+               [supermin febootstrap],[supermin])
 AC_CHECK_PROGS([SUPERMIN_HELPER],
-               [supermin-helper febootstrap-supermin-helper],[no])
+               [supermin-helper febootstrap-supermin-helper],[supermin-helper])
 
 dnl Pass supermin --packager-config option.
 dnl




More information about the Libguestfs mailing list