diff options
author | jkh <jkh@FreeBSD.org> | 1994-09-07 08:45:39 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-09-07 08:45:39 +0000 |
commit | f66e9665b92d748e82f3edbcd88abacd2dbb2ae1 (patch) | |
tree | a538418572a36f10f06db259130be965d3fc14d1 /usr.bin/locate | |
parent | 5787daa8ba8e7941bcab72205ede819402679d50 (diff) | |
download | FreeBSD-src-f66e9665b92d748e82f3edbcd88abacd2dbb2ae1.zip FreeBSD-src-f66e9665b92d748e82f3edbcd88abacd2dbb2ae1.tar.gz |
Fix a longstanding bogon with setenv usage.
Submitted by: jkh
Diffstat (limited to 'usr.bin/locate')
-rw-r--r-- | usr.bin/locate/locate/updatedb.csh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/locate/locate/updatedb.csh b/usr.bin/locate/locate/updatedb.csh index 574d52a..fef2d6d 100644 --- a/usr.bin/locate/locate/updatedb.csh +++ b/usr.bin/locate/locate/updatedb.csh @@ -40,7 +40,7 @@ set SRCHPATHS = "/" # directories to be put in the database set LIBDIR = /usr/libexec # for subprograms # for temp files -if (! $?TMPDIR) setenv TMPDIR = /var/tmp +if (! $?TMPDIR) setenv TMPDIR /var/tmp set FCODES = /var/db/locate.database # the database set path = ( /bin /usr/bin ) |