diff options
author | Richard Levitte <levitte@openssl.org> | 2005-07-08 12:13:22 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2005-07-08 12:13:22 +0200 |
commit | 7d368fcbd87306eccaba6fc1d5b1e8389bb4c434 (patch) | |
tree | a9accac46b26bfabf44171c8884647b65cd7fd47 /crypto/bf | |
parent | Changes from the 0.9.8 branch. (diff) | |
download | openssl-7d368fcbd87306eccaba6fc1d5b1e8389bb4c434.tar.xz openssl-7d368fcbd87306eccaba6fc1d5b1e8389bb4c434.zip |
On case insensitive systems, 'install' gets mixed up with the existing file
'INSTALL', so we need to put some force into installing
Diffstat (limited to 'crypto/bf')
-rw-r--r-- | crypto/bf/Makefile | 5 |
1 files changed, 4 insertions, 1 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 \ |