summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.org2
-rw-r--r--crypto/Makefile.ssl2
-rw-r--r--ssl/Makefile.ssl2
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.org b/Makefile.org
index aeebfb6041..d80c4c2e65 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -732,7 +732,7 @@ install: all install_docs
done; \
( here="`pwd`"; \
cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
- make -f $$here/Makefile link-shared ); \
+ $(MAKE) -f $$here/Makefile link-shared ); \
fi
install_docs:
diff --git a/crypto/Makefile.ssl b/crypto/Makefile.ssl
index dc45d37deb..55e970baec 100644
--- a/crypto/Makefile.ssl
+++ b/crypto/Makefile.ssl
@@ -98,7 +98,7 @@ lib: $(LIBOBJ)
shared:
if [ -n "$(SHARED_LIBS)" ]; then \
- (cd ..; make $(SHARED_LIB)); \
+ (cd ..; $(MAKE) $(SHARED_LIB)); \
fi
libs:
diff --git a/ssl/Makefile.ssl b/ssl/Makefile.ssl
index c75956fc21..3a8bd9befa 100644
--- a/ssl/Makefile.ssl
+++ b/ssl/Makefile.ssl
@@ -65,7 +65,7 @@ lib: $(LIBOBJ)
shared:
if [ -n "$(SHARED_LIBS)" ]; then \
- (cd ..; make $(SHARED_LIB)); \
+ (cd ..; $(MAKE) $(SHARED_LIB)); \
fi
files: