summaryrefslogtreecommitdiff
path: root/crypto/bf
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-06-22 18:02:23 +0000
committerRichard Levitte <levitte@openssl.org>2000-06-22 18:02:23 +0000
commitce2d00b2b46421562de2ffb40ebce6c26a2778d5 (patch)
treefd951db5f70e8940cf2193bf26da668c53e83175 /crypto/bf
parent90ae4673a5030996adea8c0c4d1f6a783ccd079f (diff)
downloadopenssl-new-ce2d00b2b46421562de2ffb40ebce6c26a2778d5.tar.gz
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...
Diffstat (limited to 'crypto/bf')
-rw-r--r--crypto/bf/Makefile.ssl4
1 files changed, 3 insertions, 1 deletions
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; \