#! /sbin/sh
####################################
#  Product: ixPython
#  Fileset: Latest
#  configure
#  (c) Copyright Hewlett-Packard Company
####################################
UTILS="/usr/lbin/sw/control_utils"
if [[ ! -f $UTILS ]]
then
        echo "ERROR:    Cannot find $UTILS"
        exit 1
fi
. $UTILS
exitval=$SUCCESS
####################################
#Set up the man pages
####################################
mod_pathfile -a MP /opt/iexpress/python/man
####################################
exit $exitval
####################################
