#      Copyright (c) 1994 AT&T
#      All Rights Reserved
#
#      Note: Lucent Technologies is now Alcatel-Lucent; some copyrights
#      may have been assigned by AT&T to Alcatel-Lucent.
#
#      THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
#      The copyright notice above does NOT evidence any
#      actual or intended publication of such source code.
#      The Computing Technology Center reserves the rights for distribution.
#      Filename: postinstall.

#ident "@(#)postinstall   version  40.1.2.3  RDS UNIX source.  Last delta: 06/30/00 13:39:56"

##
## If the catman page has been installed then rebuild
## the man index so that the man page shows up.
##

MANCMD="/usr/bin/man"

if [ -x "$MANCMD" ] && echo $CLASSES | grep catman >/dev/null
then
	echo "Running man -u ..."
	$MANCMD -u
fi
exit 0
