diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.in | 8 |
2 files changed, 8 insertions, 2 deletions
@@ -6,6 +6,8 @@ initialized for the "/" path. This resulted in remove_node_lru() crashing on LOOKUP-DOTDOT. Patch by Madan Valluri + * libfuse: configure: detect new util-linux + 2012-10-01 Miklos Szeredi <miklos@szeredi.hu> * Released 2.9.2 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 |