summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-04-23 16:12:09 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-04-23 16:12:09 +0000
commitd07692cd96f8a65453f9a6ad1ed6d980328b84ea (patch)
tree163da4f332d2d20262f4c7bf144c517f7e933b31 /engines
parent82ae57136b93ff8a39bc32a52d7b5fb41502a8c2 (diff)
Make no-gost work properly.
Diffstat (limited to 'engines')
-rw-r--r--engines/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/Makefile b/engines/Makefile
index 1cdfb2625d..bd29bb485f 100644
--- a/engines/Makefile
+++ b/engines/Makefile
@@ -9,9 +9,9 @@ INCLUDES= -I../include
CFLAG=-g
MAKEFILE= Makefile
AR= ar r
-EDIRS= ccgost
+ENGDIRS= ccgost
-RECURSIVE_MAKE= [ -n "$(EDIRS)" ] && for i in $(EDIRS) ; 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;