From 5bddd4073acd76da76e9e6197cde8baf80e60e95 Mon Sep 17 00:00:00 2001 From: "wchang0222%aol.com" Date: Wed, 20 Oct 2004 17:24:53 +0000 Subject: [PATCH] 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. --- security/coreconf/rules.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/security/coreconf/rules.mk b/security/coreconf/rules.mk index 443c5ba3f65..ffa1ed6e0b6 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