aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/p5-Net-ILO
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2018-06-29 10:10:35 +0000
committerMathieu Arnold <mat@FreeBSD.org>2018-06-29 10:10:35 +0000
commit57de7fba19665411617dccd0852ac984f60ea0ff (patch)
treedf4b5a7656a475d837a313a23e00f43e739df80d /net-mgmt/p5-Net-ILO
parente55560c172a34aefd73f5e8dc539643de07a92c6 (diff)
downloadports-57de7fba19665411617dccd0852ac984f60ea0ff.tar.gz
ports-57de7fba19665411617dccd0852ac984f60ea0ff.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
Notes
Notes: svn path=/head/; revision=473539
Diffstat (limited to 'net-mgmt/p5-Net-ILO')
-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"};
-+}