blob: e64acda9da1641712069ed590e03bd8fc0bf2e29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Index: Makefile.PL
diff -u Makefile.PL.orig Makefile.PL
--- Makefile.PL.orig 2013-12-09 17:30:29.282987698 +0900
+++ Makefile.PL 2013-12-09 17:30:35.243986223 +0900
@@ -101,3 +101,10 @@
close(OUT) || die "Failed to close file 'config.h' [$!]";
close(IN) || die "Failed to close file 'config.h.in' [$!]";
}
+
+package MY;
+sub install {
+ my $inherited = shift->SUPER::install(@_);
+ $inherited =~ s/(install :: (all )?pure_install) doc_install/$1/;
+ $inherited;
+}
|