summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-03-13 21:49:15 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-14 13:50:43 +0100
commitd43a8fdcd495825a3507950caa4cdc7e81d681db (patch)
tree0136fab64c7bef2f9fd4855ae852ad8420a77b25 /engines
parent58a8fc25d73d8558df25d998f85d4714fbbe74ac (diff)
engines/Makefile.in: some [older] shell complain about 'for i ;',
but not if there is reference to empty variable. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'engines')
-rw-r--r--engines/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/Makefile.in b/engines/Makefile.in
index aaffe1e8dd..4c8ca99c06 100644
--- a/engines/Makefile.in
+++ b/engines/Makefile.in
@@ -10,7 +10,7 @@ CFLAG=-g
MAKEFILE= Makefile
AR= ar r
-RECURSIVE_MAKE=[ -z "$(ENGDIRS)" ] || for i in $(ENGDIRS) ; do \
+RECURSIVE_MAKE= for i in $${ENGDIRS:-$(ENGDIRS)} ; do \
(cd $$i && echo "making $$target in $(DIR)/$$i..." && \
$(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \
done;