Fix VERBOSE=1 in verbose_build.pm

How I hate you, Perl.

Fixes #873
This commit is contained in:
Derek Bankieris 2019-09-27 15:58:56 -05:00 committed by Scott Fennell
parent c79649b7ca
commit 86515bcaaa

View File

@ -7,7 +7,7 @@ use Exporter ();
use strict ;
sub verbose_build {
return exists($ENV{'TRICK_VERBOSE_BUILD'}) or exists($ENV{'VERBOSE'});
return (exists($ENV{'TRICK_VERBOSE_BUILD'}) or exists($ENV{'VERBOSE'}));
}
1;