#!/usr/bin/ksh

SYMON_ROOT_DIR=$(/usr/bin/pkgparam SUNWescom BASEDIR)
typeset -r THIS_PKG=SUNWscma

typeset -r PSR=$(uname -p)
typeset -r SYMON_LIB=SUNWsymon/base/lib
typeset -r PSR9="${PSR}-sun-solaris2.9"
typeset -r S9_DIR="$SYMON_ROOT_DIR/$SYMON_LIB/$PSR9"

cd $S9_DIR	|| return $?

# Cleaning up the S9 specific files that were
# backed up during the postpatch script.

typeset s9_file=
for s9_file in $(\ls *.s9_do_not_remove) ; do
	rm -f $s9_file
done

exit 0
