summaryrefslogtreecommitdiffstats
path: root/crypto/idea
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-10-11 02:04:16 +0000
committerRichard Levitte <levitte@openssl.org>2000-10-11 02:04:16 +0000
commiteb3633164eb2edf50aa9389eb22bf8e10eca283c (patch)
treedea4401ad20bfd23c49352f9b436415ff235004f /crypto/idea
parenta08d14fef44ca72db2e88c38dffe12e31bdc3d21 (diff)
Fix from main trunk, 2000-09-25 10:52 levitte:
'ranlib' doesn't always run on some systems. That's actually acceptable, since all that happens if it fails is a library with an index, which makes linking slower, but still working correctly.
Diffstat (limited to 'crypto/idea')
-rw-r--r--crypto/idea/Makefile.ssl3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/idea/Makefile.ssl b/crypto/idea/Makefile.ssl
index 3bd3e53ef4..d29bcd6874 100644
--- a/crypto/idea/Makefile.ssl
+++ b/crypto/idea/Makefile.ssl
@@ -39,7 +39,8 @@ all: lib
lib: $(LIBOBJ)
$(AR) $(LIB) $(LIBOBJ)
- $(RANLIB) $(LIB)
+ @echo You may get an error following this line. Please ignore.
+ - $(RANLIB) $(LIB)
@touch lib
files: