[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Fri Jun 16 21:18:44 UTC 2017


The branch master has been updated
       via  6411927172638c39afe1ae1bc893fba5b77524a5 (commit)
      from  837f87c217fd595c814c4e1ab47ec1842d29b60d (commit)


- Log -----------------------------------------------------------------
commit 6411927172638c39afe1ae1bc893fba5b77524a5
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon Oct 3 17:39:11 2016 +0200

    Reorder Configure output
    
    "Configuring..." was displayed with './Configure LIST'.  This reorders
    the display of that line to happen after the "targets" LIST, TABLE and
    HASH have been checked.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/3702)

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

Summary of changes:
 Configure | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/Configure b/Configure
index 24dbde8..2170e9b 100755
--- a/Configure
+++ b/Configure
@@ -293,9 +293,6 @@ if (defined $ENV{$local_config_envname}) {
     }
 }
 
-
-print "Configuring OpenSSL version $config{version} ($config{version_num})\n";
-
 $config{prefix}="";
 $config{openssldir}="";
 $config{processor}="";
@@ -853,6 +850,9 @@ if ($target eq "HASH") {
     exit 0;
 }
 
+print "Configuring OpenSSL version $config{version} ($config{version_num})\n";
+print "for $target\n";
+
 # Backward compatibility?
 if ($target =~ m/^CygWin32(-.*)$/) {
     $target = "Cygwin".$1;
@@ -922,7 +922,6 @@ foreach (sort (keys %disabled))
 	print "\n";
 	}
 
-print "Configuring for $target\n";
 # Support for legacy targets having a name starting with 'debug-'
 my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
 if ($d) {


More information about the openssl-commits mailing list