From 558fe5e2b0347eba5a3d2e08001b357952434712 Mon Sep 17 00:00:00 2001 From: Benedikt Morbach Date: Mon, 30 Sep 2013 16:21:27 +0200 Subject: [PATCH] respect system-wide perl installation paths Organization: Exherbo With INSTALL_BASE, perl files are unconditionally installed to ${prefix}/lib/perl5/ instead of respecting the system-dependent perl library path that is set when perl is installed. (sitelib/vendorlib) If INSTALL_BASE is changed to PREFIX, it correctly finds the path where it should install via perl's Config.pm --- perl/Makefile.PL.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in index cf5e6c4..9289594 100755 --- a/perl/Makefile.PL.in +++ b/perl/Makefile.PL.in @@ -1,6 +1,6 @@ use ExtUtils::MakeMaker; WriteMakefile( - 'INSTALL_BASE' => '@prefix@', + 'PREFIX' => '@prefix@', 'NAME' => 'Subunit', 'VERSION' => '@SUBUNIT_VERSION@', 'test' => { 'TESTS' => 'tests/*.pl' }, -- 1.8.4