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>
This commit is contained in:
Steve Price 1998-01-09 23:56:45 +00:00
parent d69fcdf283
commit e98d6de67c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32379

View file

@ -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