summaryrefslogtreecommitdiff
path: root/security/nss/tests/set_environment
diff options
context:
space:
mode:
authorsonmi%netscape.com <devnull@localhost>2001-05-25 01:46:08 +0000
committersonmi%netscape.com <devnull@localhost>2001-05-25 01:46:08 +0000
commit9d10eaa23de2253b41a255ce767eb27f8651be2b (patch)
tree4ce022744317112f3581820be5309b632512a625 /security/nss/tests/set_environment
parent6d00604eaab7e40373be69d6e1726b320f3bdfcd (diff)
downloadnss-hg-9d10eaa23de2253b41a255ce767eb27f8651be2b.tar.gz
searching for nstools in different places now ($MOZ_TOOLS, z:/nstools,
c:/nstools, d:/nstools and d:/i386/nstools)
Diffstat (limited to 'security/nss/tests/set_environment')
-rw-r--r--security/nss/tests/set_environment24
1 files changed, 23 insertions, 1 deletions
diff --git a/security/nss/tests/set_environment b/security/nss/tests/set_environment
index 6336f9e12..1486e669b 100644
--- a/security/nss/tests/set_environment
+++ b/security/nss/tests/set_environment
@@ -150,7 +150,29 @@ elif [ "$os_name" = "Windows_95" -o \
then
#FIXME net use, mount the neccessary pnetwork drives and partitiones first
PATH=`echo $SHELL | sed -e "s/.ksh.exe//g" -e "s/.sh.exe//g"`
- PATH="Z:/nstools/bin;Z:/nstools/perl5;z:/bin;$PATH"
+ MOZTOOLS_IN_PATH=NO
+ if [ -n $MOZ_TOOLS -a -d $MOZ_TOOLS ] ; then
+ MOZ_TOOLS=`ls -d "$MOZ_TOOLS" | sed -e 's/\\\/\//g'`
+ #echo "MOZ_TOOLS reformated to $MOZ_TOOLS"
+ if [ -d $MOZ_TOOLS ] ; then #still exist after reformating?
+ MOZTOOLS_IN_PATH=OK
+ fi
+ fi
+ if [ -n $MOZTOOLS_IN_PATH -a $MOZTOOLS_IN_PATH = OK ] ; then
+ #echo "Use MOZTOOLS in PATH"
+ PATH="$MOZ_TOOLS/bin;$MOZ_TOOLS/perl5;$PATH"
+ elif [ -d Z:/nstools/bin ] ; then
+ PATH="Z:/nstools/bin;Z:/nstools/perl5;$PATH"
+ elif [ -d C:/nstools/bin ] ; then
+ PATH="C:/nstools/bin;C:/nstools/perl5;$PATH"
+ elif [ -d D:/nstools/bin ] ; then
+ PATH="D:/nstools/bin;D:/nstools/perl5;$PATH"
+ elif [ -d D:/i386/nstools/bin ] ; then
+ PATH="D:/i386/nstools/bin;D:/i386/nstools/perl5;$PATH"
+ else
+ echo "FATAL: Can't find nstools"
+ exit
+ fi
if [ "$os_name" = "Windows_NT" -o \
"$os_name" = "WINNT" ]