Skip to content

Commit

Permalink
perl 5.8 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
eserte committed May 19, 2024
1 parent 2edb7a1 commit 694c48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/bbbikebuildutil.t
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ok $pmake, "pmake call worked, result is $pmake";

{
my $pmake_canV = eval { get_pmake canV => 1, fallback => 0 };
isnt $pmake_canV, 'bmake', "bmake cannot cope with -V correctly, result is " . ($pmake_canV // "<undef>");
isnt $pmake_canV, 'bmake', "bmake cannot cope with -V correctly, result is " . (defined $pmake_canV ? $pmake_canV : "<undef>");
}

{
Expand Down

0 comments on commit 694c48e

Please sign in to comment.