Reorder Configure output
authorRichard Levitte <levitte@openssl.org>
Mon, 3 Oct 2016 15:39:11 +0000 (17:39 +0200)
committerRichard Levitte <levitte@openssl.org>
Fri, 16 Jun 2017 21:18:41 +0000 (23:18 +0200)
"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@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3702)

Configure

index 24dbde84ed74ae5539aabf06430d9c32b9a348f1..2170e9b62612964938fd707dd41a370d4e884bb1 100755 (executable)
--- 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) {