From 799f691f35c69d13aeab80c2a2ad7f8d9c6dbe8b Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Fri, 15 Jun 2001 21:38:56 +0000 Subject: 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. --- security/coreconf/location.mk | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- cgit v1.2.1