summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-10-22 16:46:47 +0000
committerRichard Levitte <levitte@openssl.org>2000-10-22 16:46:47 +0000
commit5cb5715f97d265e41c9e82550d2c327a2921bd2f (patch)
treea58af36c83f5139efae4ba2325453f790228b95c /Makefile.org
parente9a583aa267a84f1ccfead260aeb111315d88212 (diff)
It seems like grep isn't as capable as I thought on some Unix systems.
Use egrep instead.
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org2
1 files changed, 1 insertions, 1 deletions
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