Skip Menu |

This queue is for tickets about the File-Rsync CPAN distribution.

Report information
The Basics
Id: 82221
Status: resolved
Priority: 0/
Queue: File-Rsync

People
Owner: Nobody in particular
Requestors: Xavier (no email address)
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.43
Fixed in: 0.45



Subject: Please don't install in arch dir
Hi, lintian (Debian tool) claims that config.pm must not be installed in arch lib. Here is a proposed patch: --- a/Makefile.PL +++ b/Makefile.PL @@ -19,7 +19,7 @@ PREREQ_PM => { 'Scalar::Util' => 0 }, PL_FILES => { 'makepm.PL' => 'config.pm' }, PM => { 'Rsync.pm' => '$(INST_LIB)/File/Rsync.pm', - 'config.pm' => '$(INST_ARCHLIB)/File/Rsync/Config.pm' }, + 'config.pm' => '$(INST_LIB)/File/Rsync/Config.pm' }, dist => { COMPRESS => 'gzip', SUFFIX => 'gz' }, realclean => { FILES => 'config.pm' }, );