summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2003-03-21 06:10:31 +0000
committerwtc%netscape.com <devnull@localhost>2003-03-21 06:10:31 +0000
commit6762a3ae1aaa11502bddcd06146c6d4b00efdbc1 (patch)
tree7c51ba39aae0803c88b80cf01058e9adb1acec0d
parent9391fbfb9873c16b232e3e1d23054ce9e0e3a3e5 (diff)
downloadnss-hg-6762a3ae1aaa11502bddcd06146c6d4b00efdbc1.tar.gz
Bug 197890: backed out the previous checkin. For unknown reasons, the
Mozilla trunk Tinderbox machine "beast" had trouble running the cygpath command. It failed with the error "can't create title mutex, Win32 error 6".
-rw-r--r--security/nss/cmd/shlibsign/sign.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/cmd/shlibsign/sign.sh b/security/nss/cmd/shlibsign/sign.sh
index 93cd786d2..99b20d6c2 100644
--- a/security/nss/cmd/shlibsign/sign.sh
+++ b/security/nss/cmd/shlibsign/sign.sh
@@ -5,7 +5,7 @@ if [ ${3} = "YES" ]; then
else
# ARG1 is ${1} with the drive letter escaped.
if echo "${1}" | grep -c : >/dev/null; then
- ARG1=`cygpath -u ${1}`
+ ARG1=`(cd ${1}; pwd)`
else
ARG1=${1}
fi