#  Remove blank lines from $ROOTDIR/var/sadm/pkg/SUNWxilrl/install/space.  
#  Although the space file is only used during initial SunOS installation, 
#  presence of blank lines interfere with installation of SUNWxilrl patches.
#

Date=`date +%m%d%y%M`
if test -f $ROOTDIR/var/sadm/pkg/SUNWxilrl/install/space
then
    cd $ROOTDIR/var/sadm/pkg/SUNWxilrl/install
       if `ls space.* > /dev/null 2>&1 `; then
       rm space.* 
       fi
    sed '/^$/d' space > space.$Date
    cp -p space.$Date space
fi
