Author: eugen
Date: Mon Nov 26 13:08:34 2018
New Revision: 340964
URL: https://svnweb.freebsd.org/changeset/base/340964

Log:
  makewhatis: do not try to operate on read-only mounted
  directories just to fail later. This is direct commit to stable/10
  instead of MFC r339817 due to makewhatis.local being moved
  in recent branches.

Modified:
  stable/10/usr.bin/makewhatis/makewhatis.local.sh

Modified: stable/10/usr.bin/makewhatis/makewhatis.local.sh
==============================================================================
--- stable/10/usr.bin/makewhatis/makewhatis.local.sh    Mon Nov 26 13:03:34 
2018        (r340963)
+++ stable/10/usr.bin/makewhatis/makewhatis.local.sh    Mon Nov 26 13:08:34 
2018        (r340964)
@@ -49,10 +49,10 @@ done
 dirs=`echo $dirs | sed 's/:/ /g'`
 case X"$dirs" in X) echo "usage: $0 [options] directories ..."; exit 1;; esac
 
-localdirs=`find -H $dirs -fstype local -type d -prune -print`
+localdirs=`find -H $dirs -fstype local \! -fstype rdonly -type d -prune -print`
 
 case X"$localdirs" in
-       X)      echo "$0: no local-mounted manual directories found: $dirs"
+       X)      echo "$0: no local rw-mounted manual directories found: $dirs"
                exit 1;;
        *)      exec `basename $0 .local` $opt $localdirs;;
 esac
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to