aboutsummaryrefslogtreecommitdiffstats
path: root/engines/Makefile.in
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-02-29 13:36:47 +0000
committerMatt Caswell <matt@openssl.org>2016-03-07 13:36:17 +0000
commit8da00a38cd931f66ad4f1aaae6003d4dd6bc65c0 (patch)
tree075b48fd09a982479fbc5eb0ad8d8aa94085e0f4 /engines/Makefile.in
parent6cba4a66619dfb2c5cb784fe5aa5677cafbf9a33 (diff)
downloadopenssl-8da00a38cd931f66ad4f1aaae6003d4dd6bc65c0.tar.gz
Misc afalg build fixes
Misc afalg build fixes as suggested by Richard Levitte for the latest Configure changes. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'engines/Makefile.in')
-rw-r--r--engines/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/Makefile.in b/engines/Makefile.in
index 7a284cf57a..1645ad5216 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=[ -z "$(ENGDIRS)" ] || for i in $(ENGDIRS) ; do \
(cd $$i && echo "making $$target in $(DIR)/$$i..." && \
$(MAKE) -e TOP=../.. DIR=$$i $$target ) || exit 1; \
done;
@@ -94,6 +94,7 @@ install:
mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$${l}$(DSO_EXT).new $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/engines/$${l}$(DSO_EXT); \
done; \
fi
+ @target=install; $(RECURSIVE_MAKE)
uninstall:
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...