Subject: | [PATCH] Does not install correctly on "older" Perls |
The following "rule" needs to be incorporated in this module's Build.PL
file:
installdirs => ((($] >= 5.008009) || ($] < 5.011)) ? 'core' : 'site'),
Without it, the newly installed module will be "masked" by the older
version of the code. Patch attached.
Subject: | fix.patch |
--- Module-Pluggable-4.1/Build.PL-orig 2012-08-14 08:57:08.261495700 -0400
+++ Module-Pluggable-4.1/Build.PL 2012-08-14 08:58:52.495870700 -0400
@@ -43,6 +43,7 @@
'Test::More' => '0.62',
},
create_makefile_pl => 'small',
+ installdirs => ((($] >= 5.008009) || ($] < 5.011)) ? 'core' : 'site'),
);
$build->add_to_cleanup(@files);