summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/lib/ExtUtils/MM_Unix.pm
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2008-10-12 19:15:31 +0000
committermillert <millert@openbsd.org>2008-10-12 19:15:31 +0000
commit2865914d56ba15ad3c9e912616d163c4413e46c8 (patch)
tree91c854e9b51156e89bd796f41d0c7982cc57e8c9 /gnu/usr.bin/perl/lib/ExtUtils/MM_Unix.pm
parentSome more cleanup. No binary change. (diff)
downloadwireguard-openbsd-2865914d56ba15ad3c9e912616d163c4413e46c8.tar.xz
wireguard-openbsd-2865914d56ba15ad3c9e912616d163c4413e46c8.zip
Remove hack from MM_Unix.pm and simply set man1dir to 'none' in
installperl to prevent man page installation of the perl man pages.
Diffstat (limited to 'gnu/usr.bin/perl/lib/ExtUtils/MM_Unix.pm')
-rw-r--r--gnu/usr.bin/perl/lib/ExtUtils/MM_Unix.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/usr.bin/perl/lib/ExtUtils/MM_Unix.pm b/gnu/usr.bin/perl/lib/ExtUtils/MM_Unix.pm
index bc2d057eeb2..691a890eb36 100644
--- a/gnu/usr.bin/perl/lib/ExtUtils/MM_Unix.pm
+++ b/gnu/usr.bin/perl/lib/ExtUtils/MM_Unix.pm
@@ -1323,10 +1323,7 @@ sub init_MANPODS {
# Set up names of manual pages to generate from pods
foreach my $man (qw(MAN1 MAN3)) {
if ( $self->{"${man}PODS"}
- # Cannot check INSTALL${man}DIR on OpenBSD since we
- # have that set to "none" to prevent installation of
- # the main perl man pages. Use INST_${man}DIR instead
- or $self->{"INST_${man}DIR"} =~ /^(none|\s*)$/
+ or $self->{"INSTALL${man}DIR"} =~ /^(none|\s*)$/
) {
$self->{"${man}PODS"} ||= {};
}