opnsense-ports/net/p5-Socket6/files/patch-Makefile.PL
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

15 lines
487 B
Perl

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;
+}