1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Install libs in LIBDIR instead of ARCHDIR
Author: Xavier Guimard <x.guimard@free.fr>
Bug: https://rt.cpan.org/Ticket/Display.html?id=82221
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=82221
Last-Update: 2012-12-25
--- 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' },
);
|