Fix bug in engines/Makefile: when option no-ec is provided to Configure, $(ENGDIRS) is empty and produces a syntax error because it's not surrounded in double quotes.
Signed-off-by: Ivan Pechorin <[email protected]> --- engines/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/Makefile b/engines/Makefile index 786716c..a09b2ce 100644 --- a/engines/Makefile +++ b/engines/Makefile @@ -11,7 +11,7 @@ MAKEFILE= Makefile AR= ar r ENGDIRS= ccgost -RECURSIVE_MAKE= [ -z "$(ENGDIRS)" ] || for i in $(ENGDIRS) ; do \ +RECURSIVE_MAKE= [ -z "$(ENGDIRS)" ] || for i in "$(ENGDIRS)" ; do \ (cd $$i && echo "making $$target in $(DIR)/$$i..." && \ $(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \ done; -- 1.7.11.msysgit.1 ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [email protected]
