Ik heb Findutils 4.1, met de patch die op de LFS FTP staat. Mijn probleem is dat updatedb alleen maar een database maakt met de directories die in / zitten en de bestanden in /bin 
Het script zelf is het probleem niet (belangrijste stuk:)
Het script zelf is het probleem niet (belangrijste stuk:)
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| # You can set these in the environment, or use command-line options,
# to override their defaults:
# Non-network directories to put in the database.
: ${SEARCHPATHS="/"}
# Network (NFS, AFS, RFS, etc.) directories to put in the database.
: ${NETPATHS=}
# Directories to not put in the database, which would otherwise be.
: ${PRUNEPATHS="/tmp /usr/tmp /var/tmp /afs"}
# The same, in the form of a regex that find can use.
test -z "$PRUNEREGEX" &&
PRUNEREGEX=`echo $PRUNEPATHS|sed -e 's,^,\\\(^,' -e 's, ,$\\\)\\\|\\\(^,g' -e 's,$,$\\\),'`
# The database file to build.
: ${LOCATE_DB=/var/lib/misc/locatedb}
# Directory to hold intermediate files.
if test -d /var/tmp; then
: ${TMPDIR=/var/tmp}
else
: ${TMPDIR=/usr/tmp}
fi
# The user to search network directories as.
: ${NETUSER=daemon}
# The directory containing the subprograms.
: ${LIBEXECDIR=/usr/bin}
# The directory containing find.
: ${BINDIR=/usr/bin}
# The names of the utilities to run to build the database.
: ${find=find}
: ${frcode=frcode}
: ${bigram=bigram}
: ${code=code}
PATH=$LIBEXECDIR:$BINDIR:/usr/ucb:/bin:/usr/bin:$PATH export PATH |