summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-06-15 21:37:07 +0000
committerwtc%netscape.com <devnull@localhost>2001-06-15 21:37:07 +0000
commit46aee4654bb450fe85de1883d71dd16a169ab0dc (patch)
tree8d6f0b48c071ec052769987f3aca20c50e4d32e3
parent72f1bc94b774b7994b194bead5b3fc87a06c02a1 (diff)
downloadnss-hg-46aee4654bb450fe85de1883d71dd16a169ab0dc.tar.gz
Bugzilla bug #85960: avoid using a pathname with a trailing / because the
'mkdir' command on BSD/OS 4.2 doesn't like it. r=javi. a=blizzard. Tag: NSS_3_2_BRANCH
-rw-r--r--security/coreconf/location.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/security/coreconf/location.mk b/security/coreconf/location.mk
index d235272ab..e27de152c 100644
--- a/security/coreconf/location.mk
+++ b/security/coreconf/location.mk
@@ -40,10 +40,16 @@
#
ifdef BUILD_TREE
+ifdef LIBRARY_NAME
BUILD = $(BUILD_TREE)/nss/$(LIBRARY_NAME)
OBJDIR = $(BUILD_TREE)/nss/$(LIBRARY_NAME)
DEPENDENCIES = $(BUILD_TREE)/nss/$(LIBRARY_NAME)/.md
else
+BUILD = $(BUILD_TREE)/nss
+OBJDIR = $(BUILD_TREE)/nss
+DEPENDENCIES = $(BUILD_TREE)/nss/.md
+endif
+else
BUILD = $(PLATFORM)
OBJDIR = $(PLATFORM)
DEPENDENCIES = $(PLATFORM)/.md