Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Config: fix length test with inc_version_list_init
Browse files Browse the repository at this point in the history
See [perl11/p5-Config #9].
Broken with a non-empty inc_version_list_init
  • Loading branch information
Reini Urban committed Jan 6, 2016
1 parent 9ee3feb commit 70282c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/Config/t/Config.t
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ foreach my $lib (qw(applibexp archlibexp privlibexp sitearchexp sitelibexp
my $v = $Config{$k};
if (defined $v and length $v
and $v =~ /^".*?"(.*)/
and $k ne 'sig_name_init')
and $k !~ /(sig_name|list)_init$/)
{
ok !length $1, "$k => $v";
}
Expand Down

0 comments on commit 70282c7

Please sign in to comment.