aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 83878ad..671d670 100644
--- a/configure.in
+++ b/configure.in
@@ -103,8 +103,12 @@ if test "$arch" = linux -a "$cross_compiling" != "yes"; then
AC_MSG_RESULT([yes])
else
firstline=`umount --fake --no-canonicalize 2>&1 | head -1`
- AC_MSG_RESULT([$firstline])
- util_linux_ok=no
+ if test "$firstline" = 'umount: only root can use "--fake" option'; then
+ AC_MSG_RESULT([yes])
+ else
+ AC_MSG_RESULT([$firstline])
+ util_linux_ok=no
+ fi
fi
fi