mirror of
https://git.openafs.org/openafs.git
synced 2025-02-01 14:07:39 +00:00
4b2f1af543
FIXES 1315 updated packaging for hp-ux 11.00, 11.11 and 11.22
33 lines
654 B
Bash
33 lines
654 B
Bash
#!/bin/sh
|
|
|
|
echo "NOTE: Executing configure script."
|
|
#######
|
|
#
|
|
# (c) Copyright
|
|
#
|
|
########
|
|
|
|
set -a
|
|
UTILS="/usr/lbin/sw/control_utils"
|
|
if [[ ! -f ${UTILS} ]]
|
|
then
|
|
echo "ERROR: Cannot find ${UTILS}"
|
|
exit 1
|
|
fi
|
|
. ${UTILS}
|
|
|
|
############################################################################
|
|
# Set the global PATH to include OPENAFS software
|
|
ROOT=/usr/afs/
|
|
|
|
mod_pathfile -a MP ${ROOT}man
|
|
|
|
if [[ $? = 2 ]]
|
|
then
|
|
echo " /etc/MANPATH already contains the OPENAFS component."
|
|
else
|
|
echo "NOTE: Processes may need to be restarted to inherit"
|
|
echo " ${ROOT}/man in their PATH."
|
|
fi
|
|
|