summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsonmi%netscape.com <devnull@localhost>2001-07-05 19:58:59 +0000
committersonmi%netscape.com <devnull@localhost>2001-07-05 19:58:59 +0000
commitbc4891480c6ac8129be9788b79f838c9bf49c4b4 (patch)
tree15c35a7e3c282257066d490122858f7c63aec6aa
parentdb5799840da0ab58bb83be3c44124adc67a84cf0 (diff)
downloadnss-hg-bc4891480c6ac8129be9788b79f838c9bf49c4b4.tar.gz
fix for bug 87914 - can not run if PATH doesn't contain .
-rw-r--r--security/nss/tests/common/init.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nss/tests/common/init.sh b/security/nss/tests/common/init.sh
index 78db19ffb..913da0ece 100644
--- a/security/nss/tests/common/init.sh
+++ b/security/nss/tests/common/init.sh
@@ -151,10 +151,10 @@ if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRUE" ]; then
if [ -z "${DON_T_SET_PATHS}" -o "${DON_T_SET_PATHS}" != "TRUE" ] ; then
if [ "${OS_ARCH}" = "WINNT" -a "$OS_NAME" != "CYGWIN_NT" ]; then
- PATH=${DIST}/${OBJDIR}/bin\;${DIST}/${OBJDIR}/lib\;$PATH
+ PATH=.\;${DIST}/${OBJDIR}/bin\;${DIST}/${OBJDIR}/lib\;$PATH
PATH=`perl ../path_uniq -d ';' "$PATH"`
else
- PATH=${DIST}/${OBJDIR}/bin:${DIST}/${OBJDIR}/lib:$PATH
+ PATH=.:${DIST}/${OBJDIR}/bin:${DIST}/${OBJDIR}/lib:$PATH
PATH=`perl ../path_uniq -d ':' "$PATH"`
fi