1999-08-27 23:37:10 +00:00

20 lines
371 B
Bash
Executable File

#!/bin/sh -
#
# $FreeBSD$
#
if [ -x /usr/libexec/makewhatis.local -a -x /usr/bin/manpath ] ; then
echo ""
echo "Rebuilding whatis database:"
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
fi