From 7d368fcbd87306eccaba6fc1d5b1e8389bb4c434 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 8 Jul 2005 10:13:22 +0000 Subject: [PATCH] On case insensitive systems, 'install' gets mixed up with the existing file 'INSTALL', so we need to put some force into installing --- crypto/bf/Makefile | 5 ++++- crypto/des/Makefile | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) 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 \ -- 2.34.1