diff options
author | Andy Polyakov <appro@openssl.org> | 2016-03-13 21:49:15 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-03-14 13:50:43 +0100 |
commit | d43a8fdcd495825a3507950caa4cdc7e81d681db (patch) | |
tree | 0136fab64c7bef2f9fd4855ae852ad8420a77b25 /engines | |
parent | Fix the init cleanup order (diff) | |
download | openssl-d43a8fdcd495825a3507950caa4cdc7e81d681db.tar.xz openssl-d43a8fdcd495825a3507950caa4cdc7e81d681db.zip |
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.in | 2 |
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; |