summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-03-15 09:46:14 +0000
committerAndy Polyakov <appro@openssl.org>2005-03-15 09:46:14 +0000
commitb43b9de9e4b09b91d0530358c7c9600c9ecbccd1 (patch)
tree50d84e7b5a086f3dc0f225f3c13cc6784fb1e55f /Makefile.org
parent6286bbecef8a6cde23f99705148fb77e47c1ad22 (diff)
Real Bourne shell doesn't accept ! as in "if ! grep ..." Fix this in
crypto/Makefile and make Makefile.org and fips/Makefile more discreet.
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.org b/Makefile.org
index d60d085dcc..cc4000b148 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -227,7 +227,7 @@ all: Makefile sub_all openssl.pc
sigs: $(SIGS)
libcrypto.a.sha1: libcrypto.a
- if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \
+ @if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \
$(RANLIB) libcrypto.a; \
fips/sha1/fips_standalone_sha1 libcrypto.a > libcrypto.a.sha1; \
fi