From ff674df720741db12a65b3907745e20af111fd3c Mon Sep 17 00:00:00 2001 From: "sonmi%netscape.com" Date: Thu, 5 Jul 2001 19:58:59 +0000 Subject: [PATCH] fix for bug 87914 - can not run if PATH doesn't contain . --- security/nss/tests/common/init.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/security/nss/tests/common/init.sh b/security/nss/tests/common/init.sh index 78db19ffb09..913da0ece7b 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