summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2004-06-21 18:05:53 +0000
committerRichard Levitte <levitte@openssl.org>2004-06-21 18:05:53 +0000
commit6069bdbe275c6ee6fcf0c6afad02b639880e31a2 (patch)
tree42417837953351681e8a69202b9675f4d344bfe8 /Makefile.org
parent871fe9107db22fd2a16ab287a894234ac2f6fdfd (diff)
Standard sh doesn't tolerate ! as part of the conditional command.
PR: 900
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.org b/Makefile.org
index 14eef7f2ec..e26a32a980 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -814,7 +814,9 @@ install: all install_docs
if [ -f "$$i" ]; then \
( echo installing $$i; \
cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
- 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 \
+ : ; \
+ else \
$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
fi; \
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \