diff options
author | Bodo Möller <bodo@openssl.org> | 2001-03-09 14:01:42 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2001-03-09 14:01:42 +0000 |
commit | 4e20b1a65628c299d078f8658787a2203171a285 (patch) | |
tree | a16bd4ca40c94b878b05e2f9a76f6521f99a8af3 /crypto/err | |
parent | cc5ba6a7b6e3f095e20ddcef927ef5414964579f (diff) | |
download | openssl-new-4e20b1a65628c299d078f8658787a2203171a285.tar.gz |
Instead of telling both 'make' and the user that ranlib
errors can be tolerated, hide the error from 'make'.
This gives shorter output both if ranlib fails and if
it works.
Diffstat (limited to 'crypto/err')
-rw-r--r-- | crypto/err/Makefile.ssl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/err/Makefile.ssl b/crypto/err/Makefile.ssl index 465f0e3887..adfd1fd0b4 100644 --- a/crypto/err/Makefile.ssl +++ b/crypto/err/Makefile.ssl @@ -40,8 +40,7 @@ all: lib lib: $(LIBOBJ) $(AR) $(LIB) $(LIBOBJ) - @echo You may get an error following this line. Please ignore. - - $(RANLIB) $(LIB) + $(RANLIB) $(LIB) || echo Never mind. @touch lib files: |