From ce2d00b2b46421562de2ffb40ebce6c26a2778d5 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 22 Jun 2000 18:02:23 +0000 Subject: [PATCH] On case-insensitive systems, the 'install' target gets matched against the 'INSTALL' file, which means that 9 times of 10, the BlowFish headers won't get installed. Avoid this in the same way it's done in crypto/des/Makefile.ssl, where someone apparently has thought of this... --- crypto/bf/Makefile.ssl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crypto/bf/Makefile.ssl b/crypto/bf/Makefile.ssl index 1bb56887a5..adc9eec3c6 100644 --- a/crypto/bf/Makefile.ssl +++ b/crypto/bf/Makefile.ssl @@ -77,7 +77,9 @@ links: @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) -install: +install: installs + +installs: @for i in $(EXHEADER) ; \ do \ (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ -- 2.34.1