diff options
| -rw-r--r-- | usr.bin/locate/locate/updatedb.csh | 2 | ||||
| -rw-r--r-- | usr.bin/locate/locate/updatedb.sh | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/locate/locate/updatedb.csh b/usr.bin/locate/locate/updatedb.csh index fef2d6d51a8c..155dd753f9b0 100644 --- a/usr.bin/locate/locate/updatedb.csh +++ b/usr.bin/locate/locate/updatedb.csh @@ -57,7 +57,7 @@ set errs = $TMPDIR/locate.errs.$$  # search locally or everything  # find ${SRCHPATHS} -print | \ -find ${SRCHPATHS} \! -fstype local -prune -or -print | \ +find ${SRCHPATHS} \! -fstype ufs -prune -or -print | \  	tr '/' '\001' | \  	(sort -T $TMPDIR -f; echo $status > $errs) | tr '\001' '/' > $filelist diff --git a/usr.bin/locate/locate/updatedb.sh b/usr.bin/locate/locate/updatedb.sh index bcd34565e81e..af9eb47c143a 100644 --- a/usr.bin/locate/locate/updatedb.sh +++ b/usr.bin/locate/locate/updatedb.sh @@ -60,7 +60,7 @@ ERRS="$TMPDIR/locate.errs.$$"  # search locally or everything  # find ${SRCHPATHS} -print | \ -find ${SRCHPATHS} ! -fstype local -prune -or -print | \ +find ${SRCHPATHS} ! -fstype ufs -prune -or -print | \  	tr '/' '\001' | \  	(sort -T $TMPDIR -f; echo $? > $ERRS) | tr '\001' '/' > $FILELIST  | 
