Subject: | File::Copy::Recursive::rcopy not exported in Module::Install::Catalyst |
Module::Install::Catalyst is no long exporting 'rcopy' from
File::Copy::Recursive as of 1.30. This results in the following
warnings(from Makefile.PL):
...
include inc/Module/Install/Catalyst.pm
include inc/File/Copy/Recursive.pm
*** Module::Install::Catalyst
Use of inherited AUTOLOAD for non-method
Module::Install::Catalyst::rcopy() is deprecated at
/home/jjudd/perl5/lib/perl5/Module/Install/Catalyst.pm line 105.
Use of inherited AUTOLOAD for non-method
Module::Install::Catalyst::rcopy() is deprecated at
/home/jjudd/perl5/lib/perl5/Module/Install/Catalyst.pm line 105.
Use of inherited AUTOLOAD for non-method
Module::Install::Catalyst::rcopy() is deprecated at
/home/jjudd/perl5/lib/perl5/Module/Install/Catalyst.pm line 105.
Use of inherited AUTOLOAD for non-method
Module::Install::Catalyst::rcopy() is deprecated at
/home/jjudd/perl5/lib/perl5/Module/Install/Catalyst.pm line 105.
Use of inherited AUTOLOAD for non-method
Module::Install::Catalyst::rcopy() is deprecated at
/home/jjudd/perl5/lib/perl5/Module/Install/Catalyst.pm line 105.
Please run "make catalyst_par" to create the PAR package!
*** Module::Install::Catalyst finished.
...
which, in turn, results in only /lib, POD, and /script files being
installed... ( no catalyst /root, etc., get installed );
use File::Copy::Recursive;
should be
use File::Copy::Recursive 'rcopy';
Thanks!