From 06fb84f56632e976b1a97a98413c4064af935c0e Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 18 Dec 2007 14:54:51 -0600 Subject: [PATCH] installer: made $DEBUG in fix-perl-path.pl contigent on DEBUG env var --- fix-perl-path.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fix-perl-path.PL b/fix-perl-path.PL index 7e23b0be23..aa37161ce4 100644 --- a/fix-perl-path.PL +++ b/fix-perl-path.PL @@ -20,7 +20,7 @@ use ExtUtils::MakeMaker::Config; use Tie::File; my $basedir = (shift); -my $DEBUG = 1; +my $DEBUG = exists $ENV{'DEBUG'} ? $ENV{'DEBUG'} : 0; $DEBUG = 1 if $basedir eq 'test'; -- 2.20.1