summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-10-26 15:14:12 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-10-26 20:16:57 -0700
commitb256460cd383b29766d66530f181b61c40a4eccb (patch)
treeedbf480252c86677b489e244a5acd2de40dc494a
parentd67594ff366291f164fb41e4dcc791494ec4bb0e (diff)
downloadperl-b256460cd383b29766d66530f181b61c40a4eccb.tar.gz
Remove arybase’s Makefile.PL
It only existed to work around an ExtUtils::MakeMaker problem that is now fixed
-rw-r--r--MANIFEST1
-rw-r--r--ext/arybase/Makefile.PL16
2 files changed, 0 insertions, 17 deletions
diff --git a/MANIFEST b/MANIFEST
index 321d48d0d9..8336e2c0e3 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -3530,7 +3530,6 @@ epoc/epoc_stubs.c EPOC port
epoc/link.pl EPOC port link a exe
ext/arybase/arybase.pm For $[
ext/arybase/arybase.xs For $[
-ext/arybase/Makefile.PL For $[
ext/arybase/ptable.h For $[
ext/arybase/t/aeach.t For $[
ext/arybase/t/aelem.t For $[
diff --git a/ext/arybase/Makefile.PL b/ext/arybase/Makefile.PL
deleted file mode 100644
index 2d372a6d68..0000000000
--- a/ext/arybase/Makefile.PL
+++ /dev/null
@@ -1,16 +0,0 @@
-use ExtUtils::MakeMaker;
-
-WriteMakefile(
- NAME => 'arybase',
- VERSION_FROM => 'arybase.pm',
- ABSTRACT_FROM => 'arybase.pm',
- realclean => { FILES => "" },
-);
-
-# To work around nmake stupidity. See rt.cpan.org #71847.
-package MY;
-sub ppd {
- my $stuff = SUPER::ppd{} @_;
- $stuff =~ s/ \$\[/ \$\$[/;
- $stuff;
-}