From 6069bdbe275c6ee6fcf0c6afad02b639880e31a2 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 21 Jun 2004 18:05:53 +0000 Subject: Standard sh doesn't tolerate ! as part of the conditional command. PR: 900 --- Makefile.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile.org') 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; \ -- cgit v1.2.3