diff options
author | mat <mat@FreeBSD.org> | 2018-06-29 18:10:35 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2018-06-29 18:10:35 +0800 |
commit | 6c7ba67d7c0c465124bad0aa2dc7a98c99428831 (patch) | |
tree | df4b5a7656a475d837a313a23e00f43e739df80d /Mk/Uses | |
parent | 9ed161dcf3c4e7691a009e14949abb2b7cfc2a85 (diff) | |
download | freebsd-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 'Mk/Uses')
-rw-r--r-- | Mk/Uses/perl5.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Mk/Uses/perl5.mk b/Mk/Uses/perl5.mk index b4ba2d53bb0d..eee14b7befb4 100644 --- a/Mk/Uses/perl5.mk +++ b/Mk/Uses/perl5.mk @@ -305,6 +305,9 @@ fix-perl-things: # read with perldoc, remove the README.3 files that may be generated. @[ -d "${STAGEDIR}${SITE_MAN3}" ] && \ ${FIND} ${STAGEDIR}${SITE_MAN3} -name '*::README.3' -delete || : +# Starting at ExtUtils::MakeMaker 7.31_06 and Perl 5.27.1, the base README.pod is +# no longer installed. So remove any that can be there. + @${FIND} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL} -name README.pod -delete || : . if !target(do-test) && (!empty(USE_PERL5:Mmodbuild*) || !empty(USE_PERL5:Mconfigure)) TEST_TARGET?= test |