diff options
author | Lutz Jänicke <jaenicke@openssl.org> | 2003-01-16 18:22:30 +0100 |
---|---|---|
committer | Lutz Jänicke <jaenicke@openssl.org> | 2003-01-16 18:22:30 +0100 |
commit | 018c56fdcad95befe7fe07b51d4c04d9af866c24 (patch) | |
tree | 8b66a68a71baf7da048f0ddd3c85dfeeb7bfb373 | |
parent | avoid potential confusion about curves (prime192v1 and prime256v1 are (diff) | |
download | openssl-018c56fdcad95befe7fe07b51d4c04d9af866c24.tar.xz openssl-018c56fdcad95befe7fe07b51d4c04d9af866c24.zip |
Armor against systems without ranlib...
Submitted by: Thierry Lelegard <thierry.lelegard@canal-plus.fr>
PR: 461
-rw-r--r-- | crypto/engine/Makefile.ssl | 2 | ||||
-rw-r--r-- | crypto/krb5/Makefile.ssl | 2 | ||||
-rw-r--r-- | crypto/ocsp/Makefile.ssl | 2 | ||||
-rw-r--r-- | crypto/ui/Makefile.ssl | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/crypto/engine/Makefile.ssl b/crypto/engine/Makefile.ssl index 144526aedd..6b99263724 100644 --- a/crypto/engine/Makefile.ssl +++ b/crypto/engine/Makefile.ssl @@ -46,7 +46,7 @@ all: lib lib: $(LIBOBJ) $(AR) $(LIB) $(LIBOBJ) - $(RANLIB) $(LIB) + $(RANLIB) $(LIB) || echo Never mind. @touch lib files: diff --git a/crypto/krb5/Makefile.ssl b/crypto/krb5/Makefile.ssl index cc47c05472..7136d7a402 100644 --- a/crypto/krb5/Makefile.ssl +++ b/crypto/krb5/Makefile.ssl @@ -41,7 +41,7 @@ all: lib lib: $(LIBOBJ) $(AR) $(LIB) $(LIBOBJ) - $(RANLIB) $(LIB) + $(RANLIB) $(LIB) || echo Never mind. @touch lib files: diff --git a/crypto/ocsp/Makefile.ssl b/crypto/ocsp/Makefile.ssl index 171a89ee79..8f26819532 100644 --- a/crypto/ocsp/Makefile.ssl +++ b/crypto/ocsp/Makefile.ssl @@ -43,7 +43,7 @@ all: lib lib: $(LIBOBJ) $(AR) $(LIB) $(LIBOBJ) - $(RANLIB) $(LIB) + $(RANLIB) $(LIB) || echo Never mind. @touch lib files: diff --git a/crypto/ui/Makefile.ssl b/crypto/ui/Makefile.ssl index 256f536a68..90ae7d4a4a 100644 --- a/crypto/ui/Makefile.ssl +++ b/crypto/ui/Makefile.ssl @@ -44,7 +44,7 @@ all: lib lib: $(LIBOBJ) $(AR) $(LIB) $(LIBOBJ) - $(RANLIB) $(LIB) + $(RANLIB) $(LIB) || echo Never mind. @touch lib files: |