diff options
author | cmp%mozilla.org <devnull@localhost> | 2005-03-29 00:56:35 +0000 |
---|---|---|
committer | cmp%mozilla.org <devnull@localhost> | 2005-03-29 00:56:35 +0000 |
commit | 57c6809a9e7019391555d6319fd29cbd9471cbfd (patch) | |
tree | 0caa66ae64d133866def482e46f99e4822b93428 | |
parent | 695976fe76c546e8a49d6830a533bc5f5d68c109 (diff) | |
download | nss-hg-57c6809a9e7019391555d6319fd29cbd9471cbfd.tar.gz |
Bug 193164, attachment 173332. Fix symlinks on Darwin/MacOS X so that theyTHUNDERBIRD_1_0_7_RELEASETHUNDERBIRD_1_0_6_RELEASETHUNDERBIRD_1_0_5_RELEASEFIREFOX_1_0_7_RELEASEFIREFOX_1_0_6_RELEASEFIREFOX_1_0_5_RELEASEFIREFOX_1_0_4_RELEASEFIREFOX_1_0_3_RELEASE
are absolute instead of relative. (r=chase, a=asa)
-rw-r--r-- | security/coreconf/UNIX.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/security/coreconf/UNIX.mk b/security/coreconf/UNIX.mk index b47bb8ac4..b9e603c6f 100644 --- a/security/coreconf/UNIX.mk +++ b/security/coreconf/UNIX.mk @@ -65,8 +65,7 @@ MKDEPENDENCIES = $(OBJDIR_NAME)/depend.mk # defined, the default is "install using relative symbolic # links". The two possible values are "copy", which copies files # but preserves source mtime, and "absolute_symlink", which -# installs using absolute symbolic links. The "absolute_symlink" -# option requires NFSPWD. +# installs using absolute symbolic links. # - THIS IS NOT PART OF THE NEW BINARY RELEASE PLAN for 9/30/97 # - WE'RE KEEPING IT ONLY FOR BACKWARDS COMPATIBILITY #################################################################### @@ -79,7 +78,7 @@ else ifeq ($(NSDISTMODE),absolute_symlink) # install using absolute symbolic links INSTALL = $(NSINSTALL) - INSTALL += -L `$(NFSPWD)` + INSTALL += -L `pwd` else # install using relative symbolic links INSTALL = $(NSINSTALL) |