Subject: | [PATCH] Install in correct location for Perl >= 5.9.3 |
Pod-Simple is now a core Perl module. However, the CPAN
distribution updates into the 'site' dirs. Because the core
dirs come before the site dirs in @INC, the newer version is
not used. The attached patch corrects this.
Subject: | patch.txt |
--- Pod-Simple-3.06/Makefile.PL
+++ Pod-Simple-3.06/Makefile.PL
@@ -29,6 +29,8 @@
constant integer File::Find
]
},
+
+ INSTALLDIRS => $] >= 5.009003 ? 'perl' : 'site',
);