From: Richard Levitte Date: Thu, 22 Jun 2000 18:02:23 +0000 (+0000) Subject: On case-insensitive systems, the 'install' target gets matched against X-Git-Tag: OpenSSL-engine-0_9_6-beta1~21^2~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce2d00b2b46421562de2ffb40ebce6c26a2778d5;p=openssl 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... --- 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; \