On case insensitive systems, 'install' gets mixed up with the existing file
authorRichard Levitte <levitte@openssl.org>
Fri, 8 Jul 2005 10:13:22 +0000 (10:13 +0000)
committerRichard Levitte <levitte@openssl.org>
Fri, 8 Jul 2005 10:13:22 +0000 (10:13 +0000)
'INSTALL', so we need to put some force into installing

crypto/bf/Makefile
crypto/des/Makefile

index 385215b5e502479af1de5e77b0a6bbc8fbbd14c3..81e4b7cd849824252c5854d70256cadd76aa7e31 100644 (file)
@@ -62,7 +62,10 @@ links:
        @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
        @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
 
-install:
+# We need to use force because 'install' matches 'INSTALL' on case
+# insensitive systems
+FRC.install:
+install: FRC.install
        @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
        @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
        do  \
index 434809ae85c167170c395c52ec1fb096b8d9daa9..aa633bf3eb2775196dfe4093ef33c1a28213166f 100644 (file)
@@ -88,7 +88,10 @@ links:
        @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
        @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
 
-install:
+# We need to use force because 'install' matches 'INSTALL' on case
+# insensitive systems
+FRC.install:
+install: FRC.install
        @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
        @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
        do  \