[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Wed Nov 9 01:37:34 UTC 2016


The branch master has been updated
       via  12ccb021be9e1c4c947e020ea2079e985b329a8a (commit)
      from  318447bceb3aa2c50ac0081bdb4e917f8704e7da (commit)


- Log -----------------------------------------------------------------
commit 12ccb021be9e1c4c947e020ea2079e985b329a8a
Author: Richard Levitte <levitte at openssl.org>
Date:   Wed Nov 9 00:14:56 2016 +0100

    Unix Makefile: Make sure to use $(PERL) when running ./Configure
    
    For consistency, it's better to use the perl that was specified to
    Configure last time it was called.
    
    Use case:
    
    perl v5.8.8 was first along $PATH, perl v5.22.2 was available and
    specified as: PERL=/opt/local/bin/perl ./config.  When make wanted to
    reconfigure and called './Configure reconf', configuration broke down,
    complaining about a perl that's too old.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/1884)

-----------------------------------------------------------------------

Summary of changes:
 Configurations/unix-Makefile.tmpl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl
index 28ec045..1c85637 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -769,7 +769,7 @@ tar:
 	cd $(SRCDIR); ls -l $(TARFILE).gz
 
 dist:
-	@$(MAKE) PREPARE_CMD='./Configure dist' tar
+	@$(MAKE) PREPARE_CMD='$(PERL) ./Configure dist' tar
 
 # Helper targets #####################################################
 
@@ -828,7 +828,7 @@ openssl.pc:
 configdata.pm: $(SRCDIR)/Configure $(SRCDIR)/config {- join(" ", @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
 	@echo "Detected changed: $?"
 	@echo "Reconfiguring..."
-	$(SRCDIR)/Configure reconf
+	$(PERL) $(SRCDIR)/Configure reconf
 	@echo "**************************************************"
 	@echo "***                                            ***"
 	@echo "***   Please run the same make command again   ***"


More information about the openssl-commits mailing list