Subject: | Bundle documentation error? |
The documentation for Module::Install::Bundle states that it is required
to add a line such as
requires( perl => 5.005 );
to use the bundle_deps() and auto_bundle_deps() methods.
When I do so, I get an error. In fact it seems like it is not necessary
to require a specific version of Perl.
Subject: | Makefile_test_3.PL |
use inc::Module::Install;
name 'GAAS';
all_from 'lib/GAAS.pm';
build_requires 'Test::More';
print "Requiring a specific Perl version, as the documentation says to do\n";
requires( perl => 5.005 );
print "Requiring a module that contains several *.pm files\n";
requires 'Error';
auto_bundle_deps;
WriteAll;
Subject: | log3.txt |
$ perl Makefile_test_3.PL
include /home/floflooo/Work/GAAS/program/GAAS/inc/Module/Install.pm
include inc/Module/Install/Metadata.pm
include inc/Module/Install/Base.pm
Requiring a specific Perl version, as the documentation says to do
Requiring a module that contains several *.pm files
include inc/Module/Install/Bundle.pm
Cannot find bundle source for perl at /usr/local/share/perl/5.10.1/Module/Install/Bundle.pm line 38.