aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-01-13 20:39:58 +0100
committerRichard Levitte <levitte@openssl.org>2016-01-13 20:54:17 +0100
commita33b13128fd141baaea72b038a502a7904138d91 (patch)
tree1714808ab5a0d81f2ec4664afcde77e610c405e8 /util
parent6f84b383d3c19a1993f08cdfa9a23d7649161823 (diff)
downloadopenssl-a33b13128fd141baaea72b038a502a7904138d91.tar.gz
Quick fix of debugging option for mk1mf.pl.
util/mk1mf.pl was relying on the platform having the 'debug-' prefix for doing a debug build. Since the setup of targets has changed, this is no longer true. However, it can look for '--debug' in the command line options. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'util')
-rwxr-xr-xutil/mk1mf.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index bac5a6f4e9..64ad29adeb 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -83,8 +83,6 @@ while(<IN>) {
}
close(IN);
-$debug = 1 if $mf_platform =~ /^debug-/;
-
if ($mf_fipscanisterinternal eq "y") {
$fips = 1;
$fipscanisterbuild = 1;
@@ -1401,6 +1399,7 @@ sub read_options
"rsaref" => 0,
"gcc" => \$gcc,
"debug" => \$debug,
+ "--debug" => \$debug,
"profile" => \$profile,
"shlib" => \$shlib,
"dll" => \$shlib,