Our manual pages are no longer in /usr/man, but in /usr/share/man.

Also, add the default #!/bin/sh for shellscripts, as well as $FreeBSD$.
This commit is contained in:
asmodai 2001-02-06 12:45:29 +00:00
parent ac7845bdfc
commit 05b6a2fec7
3 changed files with 13 additions and 5 deletions

View File

@ -2,7 +2,7 @@ export MANDIR TMPDIR
export DIRLST FILLST
export LFLAG PFLAG ID
MANDIR=/usr/man
MANDIR=/usr/share/man
TMPDIR=/tmp
DIRLST=
FILLST=

View File

@ -1,5 +1,9 @@
MANDIR=/usr/man
TMPDIR=/usr/man/tmp
#!/bin/sh
#
# $FreeBSD$
MANDIR=/usr/share/man
TMPDIR=/usr/share/man/tmp
date > $TMPDIR/greps
echo "Grep list: $*" >> $TMPDIR/greps

View File

@ -1,5 +1,9 @@
MANDIR=/usr/man
TMPDIR=/usr/man/tmp
#!/bin/sh
#
# $FreeBSD$
MANDIR=/usr/share/man
TMPDIR=/usr/share/man/tmp
TOOLS=$MANDIR/tools
trap "rm $TMPDIR/tmp.$$ ; exit" 2 3 15