From: Richard Levitte Date: Mon, 21 Jun 2004 18:05:53 +0000 (+0000) Subject: Standard sh doesn't tolerate ! as part of the conditional command. X-Git-Tag: OpenSSL_0_9_7e~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6069bdbe275c6ee6fcf0c6afad02b639880e31a2;p=openssl Standard sh doesn't tolerate ! as part of the conditional command. PR: 900 --- 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; \