summaryrefslogtreecommitdiff
path: root/ext/arybase
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 /ext/arybase
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
Diffstat (limited to 'ext/arybase')
-rw-r--r--ext/arybase/Makefile.PL16
1 files changed, 0 insertions, 16 deletions
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;
-}