Skip to content

Commit

Permalink
Merge pull request #1 from audreyt/patch-1
Browse files Browse the repository at this point in the history
Fix installation on Perl 5.20
  • Loading branch information
Mons committed Aug 17, 2015
2 parents c4c4431 + 6f3f892 commit cb1ea15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/Devel/CheckLib.pm
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ sub assert_lib {
# work-a-like for Makefile.PL's LIBS and INC arguments
# if given as command-line argument, append to %args
for my $arg (@ARGV) {
for my $mm_attr_key qw(LIBS INC) {
for my $mm_attr_key (qw(LIBS INC)) {
if (my ($mm_attr_value) = $arg =~ /\A $mm_attr_key = (.*)/x) {
# it is tempting to put some \s* into the expression, but the
# MM command-line parser only accepts LIBS etc. followed by =,
Expand Down

0 comments on commit cb1ea15

Please sign in to comment.