Skip to content

Commit

Permalink
forgot this in the last checkin - added Solaris 9, fixed 2 bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
sonmi%netscape.com committed Sep 14, 2001
1 parent f6c766e commit 6a55be4
Showing 1 changed file with 51 additions and 42 deletions.
93 changes: 51 additions & 42 deletions security/nss/tests/mksymlinks
@@ -1,36 +1,39 @@
#! /bin/sh

O_OPTIONS=OFF

. `dirname $0`/header

if [ $O_DEBUG = ON ]
then
if [ $O_DEBUG = ON ] ; then
Debug "NTDIST $NTDIST"
Debug "UXDIST $UXDIST"
Debug "TESTSCRIPTDIR $TESTSCRIPTDIR"
fi

if [ -d "$NSS_VER_DIR" ]
then
if [ -d "$NSS_VER_DIR" ] ; then
cd $NSS_VER_DIR
else
glob_usage "cant cd to $NSS_VER_DIR Exiting"
fi

if [ -d "$NTDIST" ]
then
if [ -d "$NTDIST" ] ; then
cd $NTDIST
ln -s WINNT4.0_DBG.OBJ WINNT5.0_DBG.OBJ
ln -s WINNT4.0_DBG.OBJD WINNT5.0_DBG.OBJD
ln -s WINNT4.0_OPT.OBJ WINNT5.0_OPT.OBJ
if [ ! -h WINNT5.0_DBG.OBJ -a ! -d WINNT5.0_DBG.OBJ ] ; then
ln -s WINNT4.0_DBG.OBJ WINNT5.0_DBG.OBJ
fi
if [ ! -h WINNT5.0_DBG.OBJD -a ! -d WINNT5.0_DBG.OBJD ] ; then
ln -s WINNT4.0_DBG.OBJD WINNT5.0_DBG.OBJD
fi
if [ ! -h WINNT5.0_OPT.OBJ -a ! -d WINNT5.0_OPT.OBJ ] ; then
ln -s WINNT4.0_OPT.OBJ WINNT5.0_OPT.OBJ
fi

#ln -s WIN954.0_DBG.OBJD WIN954.0_DBG.OBJ
#ln -s WINNT4.0_DBG.OBJD WINNT4.0_DBG.OBJ
#ln -s WINNT5.0_DBG.OBJD WINNT5.0_DBG.OBJ
tell
if [ $O_DEBUG = ON ] ; then
tell
fi
else
Echo "WARNING!!! cant cd to $NTDIST "
if [ $O_DEBUG = ON ] ; then
Debug "WARNING!!! cant cd to $NTDIST "
fi
fi

if [ -d "$UXDIST" ]
Expand All @@ -42,56 +45,62 @@ fi

ErrorFlag=0

if [ ! -h OSF1V5.1_DBG.OBJ ]
then
if [ ! -h OSF1V5.1_DBG.OBJ -a ! -d OSF1V5.1_DBG.OBJ ] ; then
ln -s OSF1V4.0D_DBG.OBJ OSF1V5.1_DBG.OBJ || ErrorFlag=1
fi
if [ ! -h OSF1V5.1_OPT.OBJ ]
then
if [ ! -h OSF1V5.1_OPT.OBJ -a ! -d OSF1V5.1_OPT.OBJ ] ; then
ln -s OSF1V4.0D_OPT.OBJ OSF1V5.1_OPT.OBJ || ErrorFlag=1
fi
if [ ! -h OSF1V5.0_DBG.OBJ ]
then
if [ ! -h OSF1V5.0_DBG.OBJ -a ! -d OSF1V5.0_DBG.OBJ ] ; then
ln -s OSF1V4.0D_DBG.OBJ OSF1V5.0_DBG.OBJ || ErrorFlag=1
fi
if [ ! -h OSF1V5.0_OPT.OBJ ]
then
if [ ! -h OSF1V5.0_OPT.OBJ -a ! -d OSF1V5.0_OPT.OBJ ] ; then
ln -s OSF1V4.0D_OPT.OBJ OSF1V5.0_OPT.OBJ || ErrorFlag=1
fi
if [ ! -h SunOS5.9_DBG.OBJ ]
then
ln -s SunOS5.6_DBG.OBJ SunOS5.9_DBG.OBJ || ErrorFlag=1
if [ ! -h SunOS5.9_64_DBG.OBJ -a ! -d SunOS5.9_64_DBG.OBJ ] ; then
ln -s SunOS5.8_64_DBG.OBJ SunOS5.9_64_DBG.OBJ || ErrorFlag=1
fi
if [ ! -h SunOS5.9_OPT.OBJ ]
then
ln -s SunOS5.6_OPT.OBJ SunOS5.9_OPT.OBJ || ErrorFlag=1
if [ ! -h SunOS5.9_64_OPT.OBJ -a ! -d SunOS5.9_64_OPT.OBJ ] ; then
ln -s SunOS5.8_64_OPT.OBJ SunOS5.9_64_OPT.OBJ || ErrorFlag=1
fi
if [ ! -h SunOS5.8_DBG.OBJ ]
then
ln -s SunOS5.6_DBG.OBJ SunOS5.8_DBG.OBJ || ErrorFlag=1
if [ ! -h SunOS5.9_DBG.OBJ -a ! -d SunOS5.9_DBG.OBJ ] ; then
ln -s SunOS5.8_DBG.OBJ SunOS5.9_DBG.OBJ || ErrorFlag=1
fi
if [ ! -h SunOS5.8_OPT.OBJ ]
then
ln -s SunOS5.6_OPT.OBJ SunOS5.8_OPT.OBJ || ErrorFlag=1
if [ ! -h SunOS5.9_OPT.OBJ -a ! -d SunOS5.9_OPT.OBJ ] ; then
ln -s SunOS5.8_OPT.OBJ SunOS5.9_OPT.OBJ || ErrorFlag=1
fi
#if [ ! -h Linux2.4_x86_glibc_PTH_DBG.OBJ ]
#sonmi - still leaving the section in there so 3.3 and 3.2 will not break
#since 5.8 is the masterbuild it should never be executed
#additionally: only creat link if the slave build is present, but
#master is not
if [ ! -h SunOS5.8_DBG.OBJ -a ! -d SunOS5.8_DBG.OBJ ] ; then
if [ -d SunOS5.6_DBG.OBJ ] ; then
ln -s SunOS5.6_DBG.OBJ SunOS5.8_DBG.OBJ || ErrorFlag=1
fi
fi
if [ ! -h SunOS5.8_OPT.OBJ -a ! -d SunOS5.8_OPT.OBJ ] ; then
if [ -d SunOS5.6_OPT.OBJ ] ; then
ln -s SunOS5.6_OPT.OBJ SunOS5.8_OPT.OBJ || ErrorFlag=1
fi
fi
#if [ ! -h Linux2.4_x86_glibc_PTH_DBG.OBJ -a ! -d Linux2.4_x86_glibc_PTH_DBG.OBJ]
#then
#ln -s Linux2.2_x86_glibc_PTH_DBG.OBJ Linux2.4_x86_glibc_PTH_DBG.OBJ || ErrorFlag=1
#fi
#if [ ! -h Linux2.4_x86_glibc_PTH_OPT.OBJ ]
#if [ ! -h Linux2.4_x86_glibc_PTH_OPT.OBJ -a ! -d Linux2.4_x86_glibc_PTH_OPT.OBJ]
#then
#ln -s Linux2.2_x86_glibc_PTH_OPT.OBJ Linux2.4_x86_glibc_PTH_OPT.OBJ || ErrorFlag=1
#fi

if [ ! -h SunOS5.9_i86pc_DBG.OBJ ]
then
if [ ! -h SunOS5.9_i86pc_DBG.OBJ -a ! -d SunOS5.9_i86pc_DBG.OBJ ] ; then
ln -s SunOS5.8_i86pc_DBG.OBJ SunOS5.9_i86pc_DBG.OBJ || ErrorFlag=1
fi
if [ ! -h SunOS5.9_i86pc_OPT.OBJ ]
then
if [ ! -h SunOS5.9_i86pc_OPT.OBJ -a ! -d SunOS5.9_i86pc_OPT.OBJ ] ; then
ln -s SunOS5.8_i86pc_OPT.OBJ SunOS5.9_i86pc_OPT.OBJ || ErrorFlag=1
fi

tell
if [ $O_DEBUG = ON ] ; then
tell
fi

exit $ErrorFlag #no cleanup here, no tempfiles

0 comments on commit 6a55be4

Please sign in to comment.