From 5cb5715f97d265e41c9e82550d2c327a2921bd2f Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sun, 22 Oct 2000 16:46:47 +0000 Subject: [PATCH] It seems like grep isn't as capable as I thought on some Unix systems. Use egrep instead. --- Makefile.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.25.1