1997-08-16 17:04:02 +00:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
1998-01-09 23:56:45 +00:00
|
|
|
# $Id: 320.whatis,v 1.1.1.1 1997/08/16 17:04:02 pst Exp $
|
1997-08-16 17:04:02 +00:00
|
|
|
#
|
|
|
|
|
1998-01-09 23:56:45 +00:00
|
|
|
if [ -x /usr/libexec/makewhatis.local -a -x /usr/bin/manpath ] ; then
|
1997-08-16 17:04:02 +00:00
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo "Rebuilding whatis database:"
|
|
|
|
|
1998-01-09 23:56:45 +00:00
|
|
|
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
|
1997-08-16 17:04:02 +00:00
|
|
|
fi
|
|
|
|
fi
|