From: Richard Levitte Date: Sun, 22 Oct 2000 16:46:47 +0000 (+0000) Subject: It seems like grep isn't as capable as I thought on some Unix systems. X-Git-Tag: BEFORE_engine~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5cb5715f97d265e41c9e82550d2c327a2921bd2f;p=oweals%2Fopenssl.git It seems like grep isn't as capable as I thought on some Unix systems. Use egrep instead. --- diff --git a/Makefile.org b/Makefile.org index 1e6e5fce03..3af3971554 100644 --- a/Makefile.org +++ b/Makefile.org @@ -207,7 +207,7 @@ sub_all: fi; \ done; \ if echo "$(DIRS)" | \ - grep '\(^\| \)\(crypto\|ssl\)\( \|$$\)' > /dev/null 2>&1 && \ + egrep '(^| )(crypto|ssl)( |$$)' > /dev/null 2>&1 && \ [ -n "$(SHARED_LIBS)" ]; then \ $(MAKE) $(SHARED_LIBS); \ fi