summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-15 22:13:41 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-19 11:52:15 +0100
commitf99f91f1218d12e2e3a0fe10bb97445984a830c8 (patch)
treeb4f2f85f8ee388ce6aaf978a7b99f9399a54058b /Configure
parent98e5534e65712641930173f85262726d6fd6496e (diff)
Misc small fixes.
Better libclean that removes the exact files that have been built, nothing more and nothing less. Corrected typo A couple of editorial changes. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/Configure b/Configure
index c509fdc85a..4136673bcd 100755
--- a/Configure
+++ b/Configure
@@ -810,7 +810,8 @@ my %target = ( %{$table{$base_target}}, resolve_config($target) );
&usage if (!%target || $target{template});
$target{exe_extension}="";
-$target{exe_extension}=".exe" if ($config{target} eq "Cygwin" || $config{target} eq "DJGPP" || $config{target} =~ /^mingw/);
+$target{exe_extension}=".exe" if ($config{target} eq "DJGPP"
+ || $config{target} =~ /^(?:Cygwin|mingw)/);
$target{exe_extension}=".nlm" if ($config{target} =~ /netware/);
$target{exe_extension}=".pm" if ($config{target} =~ /vos/);