Subject: | [PATCH] fix bogus 'perl is not a run-time dependency' failure |
It's common to list the minimum required Perl version for a module as a
requirement for 'perl' in META.yml, e.g:
build_requires:
Test::More: 0
requires:
perl: 5.006001
Test::Dependencies wrongly reports this as an error, because no module
called "perl" is used by any of .pm files.
The attached patch corrects this.