1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-06 09:17:25 +00:00

fix PRUNEPATHS assignment

This commit is contained in:
Andrey A. Chernov 1999-02-28 20:40:19 +00:00
parent 1fdf11c3e6
commit 7c105f542d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44339

View File

@ -26,7 +26,7 @@
#
# updatedb - update locate database for local mounted filesystems
#
# $Id: updatedb.sh,v 1.11 1998/06/18 09:26:22 wosch Exp $
# $Id: updatedb.sh,v 1.12 1998/11/29 14:46:35 wosch Exp $
LOCATE_CONFIG="/etc/locate.rc"
if [ -f "$LOCATE_CONFIG" -a -r "$LOCATE_CONFIG" ]; then
@ -46,7 +46,7 @@ PATH=$LIBEXECDIR:/bin:/usr/bin:$PATH; export PATH
: ${mklocatedb:=locate.mklocatedb} # make locate database program
: ${FCODES:=/var/db/locate.database} # the database
: ${SEARCHPATHS:="/"} # directories to be put in the database
: ${PRUNEPATHS="/tmp /usr/tmp /var/tmp"} # unwanted directories
: ${PRUNEPATHS:="/tmp /usr/tmp /var/tmp"} # unwanted directories
: ${FILESYSTEMS:="ufs"} # allowed filesystems
: ${find:=find}