Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -1033,6 +1033,7 @@ Neil Bowers <[email protected]>
Neil Watkiss <[email protected]>
Neil Williams <[email protected]>
Nga Tang Chan
Nic Boet <[email protected]>
Nicholas Clark <[email protected]>
Nicholas Oxhøj
Nicholas Perez <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ sub pod2man {

next if ((-e $man) &&
(mtime($man) > mtime($pod)) &&
(mtime($man) > mtime("Makefile")));
(mtime($man) > (mtime("Makefile") // 0)) );

my $parser = Pod::Man->new(%options);
$parser->parse_from_file($pod, $man)
Expand Down
Loading