From 64f2d4ad238ef05312cf6f1b910b6af47c223b6a Mon Sep 17 00:00:00 2001 From: "seawood%netscape.com" Date: Wed, 26 Feb 2003 00:48:56 +0000 Subject: [PATCH] Only force the use of absolute symlinks on Darwin when building Mozilla. Bug #193164 r=wtc git-svn-id: svn://10.0.0.236/trunk@138487 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/nsprpub/Makefile.in | 6 ++++++ mozilla/nsprpub/config/config.mk | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/mozilla/nsprpub/Makefile.in b/mozilla/nsprpub/Makefile.in index ac45efa236d..f36c18a2bee 100644 --- a/mozilla/nsprpub/Makefile.in +++ b/mozilla/nsprpub/Makefile.in @@ -48,6 +48,12 @@ DIRS = config pr lib ifdef MOZILLA_CLIENT PR_CLIENT_BUILD = 1 PR_CLIENT_BUILD_UNIX = 1 +ifeq ($(OS_ARCH),Darwin) +ifndef NSDISTMODE +NSDISTMODE=absolute_symlink +export NSDISTMODE +endif +endif endif DIST_GARBAGE = config.cache config.log config.status diff --git a/mozilla/nsprpub/config/config.mk b/mozilla/nsprpub/config/config.mk index 205a5395250..815291a171a 100644 --- a/mozilla/nsprpub/config/config.mk +++ b/mozilla/nsprpub/config/config.mk @@ -77,9 +77,6 @@ endef LINK_DLL = $(LD) $(OS_DLLFLAGS) $(DLLFLAGS) ifeq ($(OS_ARCH),Darwin) -ifndef NSDISTMODE -NSDISTMODE=absolute_symlink -endif PWD := $(shell pwd) endif