Subject: | [PATCH] Install NEXT.pm in correct dir |
NEXT.pm has been in core since 5.7.3. However, the CPAN version is
defaulting to install under site_perl, and is therefore masked by the
older core version. The attached patch corrects this.
Subject: | NEXT.patch |
--- NEXT-0.62/Makefile.PL.orig 2009-04-10 09:20:58.916625000 -0400
+++ NEXT-0.62/Makefile.PL 2009-04-10 09:22:17.229125000 -0400
@@ -3,4 +3,5 @@
WriteMakefile(
NAME => q[NEXT],
VERSION_FROM => q[lib/NEXT.pm],
+ INSTALLDIRS => $] >= 5.007003 ? 'perl' : 'site',
);