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' },
);