diff options
author | sonmi%netscape.com <devnull@localhost> | 2001-07-25 21:07:24 +0000 |
---|---|---|
committer | sonmi%netscape.com <devnull@localhost> | 2001-07-25 21:07:24 +0000 |
commit | 90685d2377d45e80e7b269da5c33bc98c8410838 (patch) | |
tree | 1f0fe85e0512563c52386f2485ce4a25a96ef99f | |
parent | 9c2bb5a3de02ce7f77776b56dd5aef6d86395359 (diff) | |
download | nss-hg-90685d2377d45e80e7b269da5c33bc98c8410838.tar.gz |
added solaris 9 symlinks
-rwxr-xr-x | security/nss/tests/mksymlinks | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/security/nss/tests/mksymlinks b/security/nss/tests/mksymlinks index c21691a5e..e383bb2a4 100755 --- a/security/nss/tests/mksymlinks +++ b/security/nss/tests/mksymlinks @@ -50,6 +50,14 @@ if [ ! -h 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 +fi +if [ ! -h SunOS5.9_OPT.OBJ ] +then + ln -s SunOS5.6_OPT.OBJ SunOS5.9_OPT.OBJ || ErrorFlag=1 +fi if [ ! -h SunOS5.8_DBG.OBJ ] then ln -s SunOS5.6_DBG.OBJ SunOS5.8_DBG.OBJ || ErrorFlag=1 @@ -67,6 +75,15 @@ fi #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 + ln -s SunOS5.8_i86pc_DBG.OBJ SunOS5.9_i86pc_DBG.OBJ || ErrorFlag=1 +fi +if [ ! -h SunOS5.9_i86pc_OPT.OBJ ] +then + ln -s SunOS5.8_i86pc_OPT.OBJ SunOS5.9_i86pc_OPT.OBJ || ErrorFlag=1 +fi + tell exit $ErrorFlag #no cleanup here, no tempfiles |