summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2008-12-30 13:20:17 +0000
committerAndy Polyakov <appro@openssl.org>2008-12-30 13:20:17 +0000
commitb3b201b6f723506aa86d4850662763784df7eda0 (patch)
tree292556ae667bc110bc9cdb232220a9dcbe782e10 /Makefile.org
parentd41c785d695de4b5f2d947aa507a6a0ae41a8936 (diff)
Styling update to makefiles: eliminate redundant pipes.
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 ea0d72baaf..580a26937a 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -225,7 +225,7 @@ BUILD_CMD= if [ -d "$$dir" ]; then \
fi
RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
BUILD_ONE_CMD=\
- if echo " $(DIRS) " | grep " $$dir " >/dev/null 2>/dev/null; then \
+ if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
$(BUILD_CMD); \
fi