From: Richard Levitte Date: Fri, 8 Jul 2005 10:13:25 +0000 (+0000) Subject: On case insensitive systems, 'install' gets mixed up with the existing file X-Git-Tag: OpenSSL_0_9_8a~84 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=86a249fe4ffca828926f60989b6fbffff507a439;p=oweals%2Fopenssl.git On case insensitive systems, 'install' gets mixed up with the existing file 'INSTALL', so we need to put some force into installing --- diff --git a/crypto/bf/Makefile b/crypto/bf/Makefile index 385215b5e5..81e4b7cd84 100644 --- a/crypto/bf/Makefile +++ b/crypto/bf/Makefile @@ -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 \ diff --git a/crypto/des/Makefile b/crypto/des/Makefile index 434809ae85..aa633bf3eb 100644 --- a/crypto/des/Makefile +++ b/crypto/des/Makefile @@ -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 \