summaryrefslogtreecommitdiffstats
path: root/etc/periodic/weekly/320.whatis
diff options
context:
space:
mode:
authorsteve <steve@FreeBSD.org>1998-01-09 23:56:45 +0000
committersteve <steve@FreeBSD.org>1998-01-09 23:56:45 +0000
commitbf1b24637d5c06e5fc72dd85eaa43f135d74f5eb (patch)
tree3f065fe0532cbd9c90454d3b95f8281a46d2cc0c /etc/periodic/weekly/320.whatis
parentaf0d6b074f0c8b05cd9d78cca0795303d9420c98 (diff)
downloadFreeBSD-src-bf1b24637d5c06e5fc72dd85eaa43f135d74f5eb.zip
FreeBSD-src-bf1b24637d5c06e5fc72dd85eaa43f135d74f5eb.tar.gz
Use manpath(1) to determine the value of ${MANPATH} instead of
using one of two hard-coded values. PR: 5365 Submitted by: Ruslan Shevchenko <rssh@cam.grad.kiev.ua>
Diffstat (limited to 'etc/periodic/weekly/320.whatis')
-rwxr-xr-xetc/periodic/weekly/320.whatis17
1 files changed, 9 insertions, 8 deletions
diff --git a/etc/periodic/weekly/320.whatis b/etc/periodic/weekly/320.whatis
index 6ae23a4..fc91e7f 100755
--- a/etc/periodic/weekly/320.whatis
+++ b/etc/periodic/weekly/320.whatis
@@ -1,18 +1,19 @@
#!/bin/sh -
#
-# $Id: 320.whatis,v 1.1.1.1 1997/08/12 17:51:16 pst Exp $
+# $Id: 320.whatis,v 1.1.1.1 1997/08/16 17:04:02 pst Exp $
#
-if [ -x /usr/libexec/makewhatis.local -a -d /usr/share/man ] ; then
+if [ -x /usr/libexec/makewhatis.local -a -x /usr/bin/manpath ] ; then
echo ""
echo "Rebuilding whatis database:"
- if [ -d /usr/X11R6/man ] ; then
- MANPATH=${MANPATH:-/usr/share/man:/usr/X11R6/man:/usr/local/man}
- else
- MANPATH=${MANPATH:-/usr/share/man:/usr/local/man}
+ MANPATH=`/usr/bin/manpath -q`
+ if [ $? = 0 ]; then
+ if [ "x${MANPATH}" = "x" ]; then
+ echo "manpath failed to find any manpage directories"
+ else
+ /usr/libexec/makewhatis.local "${MANPATH}"
+ fi
fi
-
- /usr/libexec/makewhatis.local "${MANPATH}"
fi
OpenPOWER on IntegriCloud