diff options
author | Andy Polyakov <appro@openssl.org> | 2008-12-30 13:20:17 +0000 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2008-12-30 13:20:17 +0000 |
commit | b3b201b6f723506aa86d4850662763784df7eda0 (patch) | |
tree | 292556ae667bc110bc9cdb232220a9dcbe782e10 /Makefile.org | |
parent | d41c785d695de4b5f2d947aa507a6a0ae41a8936 (diff) | |
download | openssl-new-b3b201b6f723506aa86d4850662763784df7eda0.tar.gz |
Styling update to makefiles: eliminate redundant pipes.
Diffstat (limited to 'Makefile.org')
-rw-r--r-- | Makefile.org | 2 |
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 |