From 9da6bc0c7e9cf7d5d458bbb9d3ef607757f2f48d Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Mon, 11 May 2009 15:24:09 -0400 Subject: Fix 'make distcheck' mount.fuse.ifuse needs to be installed in /sbin by default, but this breaks 'make distcheck'. This adds a --disable-root-sbin option to configure and uses it when running 'make distcheck'. Signed-off-by: Matt Colyer --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 684dcce..fdc35ed 100644 --- a/configure.ac +++ b/configure.ac @@ -34,4 +34,10 @@ AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([strcasecmp strdup strerror strndup]) +AC_ARG_ENABLE([root-sbin], + AS_HELP_STRING([--disable-root-sbin], + [Don't install mount helper in /sbin]), + [without_root_sbin=yes],[without_root_sbin=no]) +AM_CONDITIONAL([WITHOUT_ROOT_SBIN], test "x$without_root_sbin" = "xyes") + AC_OUTPUT(Makefile src/Makefile fdi/Makefile) -- cgit v1.1-32-gdbae