aboutsummaryrefslogtreecommitdiffstats
path: root/net-mgmt
diff options
context:
space:
mode:
authormat <mat@FreeBSD.org>2018-06-29 18:10:35 +0800
committermat <mat@FreeBSD.org>2018-06-29 18:10:35 +0800
commit6c7ba67d7c0c465124bad0aa2dc7a98c99428831 (patch)
treedf4b5a7656a475d837a313a23e00f43e739df80d /net-mgmt
parent9ed161dcf3c4e7691a009e14949abb2b7cfc2a85 (diff)
downloadfreebsd-ports-gnome-6c7ba67d7c0c465124bad0aa2dc7a98c99428831.tar.gz
freebsd-ports-gnome-6c7ba67d7c0c465124bad0aa2dc7a98c99428831.tar.zst
freebsd-ports-gnome-6c7ba67d7c0c465124bad0aa2dc7a98c99428831.zip
Fix a few Perl ports with Perl 5.28.
Starting at ExtUtils::MakeMaker 7.31_06 and Perl 5.27.1, the base README.pod is no longer installed. So stop installing them altogether. PR: 229112 Reported by: many Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D15946
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/p5-Net-ILO/files/patch-Makefile.PL17
1 files changed, 0 insertions, 17 deletions
diff --git a/net-mgmt/p5-Net-ILO/files/patch-Makefile.PL b/net-mgmt/p5-Net-ILO/files/patch-Makefile.PL
deleted file mode 100644
index abab84bff774..000000000000
--- a/net-mgmt/p5-Net-ILO/files/patch-Makefile.PL
+++ /dev/null
@@ -1,17 +0,0 @@
---- Makefile.PL.orig 2012-04-06 04:48:50.000000000 -0400
-+++ Makefile.PL 2012-04-06 04:51:58.000000000 -0400
-@@ -16,3 +16,14 @@
- dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
- clean => { FILES => 'Net-ILO-*' },
- );
-+
-+package MY;
-+
-+sub init_PM {
-+ my $self = shift;
-+
-+ $self->SUPER::init_PM(@_);
-+
-+ # Do not install README.pod
-+ delete $self->{PM}{"README.pod"};
-+}