summaryrefslogtreecommitdiff
path: root/security/coreconf
diff options
context:
space:
mode:
authorwchang0222%aol.com <devnull@localhost>2004-10-20 17:24:53 +0000
committerwchang0222%aol.com <devnull@localhost>2004-10-20 17:24:53 +0000
commit4de7de11836741e4d82e0da1fe3d3f0a79301ab7 (patch)
treefdd5bb45c0daec5524214a16d8daf97762507625 /security/coreconf
parent11350f4c4586c3906de20df60c3b9c05464fc10f (diff)
downloadnss-hg-4de7de11836741e4d82e0da1fe3d3f0a79301ab7.tar.gz
Bugzilla bug 240784: checked in a temporary workaround for the fix for
bug 240784 that breaks OS/2 tinderbox. The problem seems to be that OS/2 file system is case insensitive, so nsinstall won't change the file name of an existing DLL in mozilla/dist/$(OBJDIR)/lib, but gmake is case sensitive, and gmake can't find a rule to build softokn3.chk from because the softokn3 DLL in mozilla/dist/$(OBJDIR)/lib doesn't have the right name.
Diffstat (limited to 'security/coreconf')
-rw-r--r--security/coreconf/rules.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/security/coreconf/rules.mk b/security/coreconf/rules.mk
index 443c5ba3f..ffa1ed6e0 100644
--- a/security/coreconf/rules.mk
+++ b/security/coreconf/rules.mk
@@ -113,6 +113,9 @@ ifdef LIBRARY
$(INSTALL) -m 664 $(LIBRARY) $(SOURCE_LIB_DIR)
endif
ifdef SHARED_LIBRARY
+ifeq ($(OS_TARGET),OS2)
+ rm -f $(SOURCE_LIB_DIR)/$(notdir $(SHARED_LIBRARY))
+endif
$(INSTALL) -m 775 $(SHARED_LIBRARY) $(SOURCE_LIB_DIR)
endif
ifdef IMPORT_LIBRARY