Skip to content

Commit

Permalink
#14 BUILD_BZIP2 default should be true
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Feb 20, 2024
1 parent 1d9e7fe commit 07b8b95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ sub getBoolean
{
my $name = shift ;

return 0
# default is TRUE
return 1
if ! defined $ENV{$name};

return ($ENV{$name} =~ /^yes|on|true|1$/i) ? 1 : 0;
Expand Down

0 comments on commit 07b8b95

Please sign in to comment.