File: install-libs-in-libdir.patch

package info (click to toggle)
libfile-rsync-perl 0.43-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 160 kB
  • ctags: 15
  • sloc: perl: 550; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 721 bytes parent folder | download
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' },
 );