Commit d43a8fdc authored by Andy Polyakov's avatar Andy Polyakov Committed by Richard Levitte
Browse files

engines/Makefile.in: some [older] shell complain about 'for i ;',


but not if there is reference to empty variable.

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent 58a8fc25
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;