From d3852a7e81e59607115958e49d0719592a8b3680 Mon Sep 17 00:00:00 2001 From: Andreas Koenig Date: Fri, 29 Sep 2017 18:06:59 +0200 Subject: [PATCH] Reduce (again) the probability that DEBUGGING=both is chosen --- bin/makeperl.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/makeperl.pl b/bin/makeperl.pl index c99e864a..1b230dce 100755 --- a/bin/makeperl.pl +++ b/bin/makeperl.pl @@ -298,7 +298,7 @@ if (defined $Opt{debugging}) { } } elsif (defined $Opt{debuggingoption}) { if ($Opt{debuggingoption} eq "rand") { - my @o = ("","","","","","DEBUGGING=-g","DEBUGGING=-g","DEBUGGING=both"); + my @o = (("")x7,("DEBUGGING=-g")x5,"DEBUGGING=both"); $debuggingoption = $o[int rand $#o]; } else { $debuggingoption = $Opt{debuggingoption}; -- 2.11.4.GIT