projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
58a8fc2
)
engines/Makefile.in: some [older] shell complain about 'for i ;',
author
Andy Polyakov
<appro@openssl.org>
Sun, 13 Mar 2016 20:49:15 +0000
(21:49 +0100)
committer
Richard Levitte
<levitte@openssl.org>
Mon, 14 Mar 2016 12:50:43 +0000
(13:50 +0100)
but not if there is reference to empty variable.
Reviewed-by: Richard Levitte <levitte@openssl.org>
engines/Makefile.in
patch
|
blob
|
history
diff --git
a/engines/Makefile.in
b/engines/Makefile.in
index aaffe1e8dddb1db2214cddc2d5a7b0a76cec57a3..4c8ca99c0612cf0c385c539d9b0498a452ebd6cc 100644
(file)
--- 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;