diff options
author | 2008-10-12 19:15:31 +0000 | |
---|---|---|
committer | 2008-10-12 19:15:31 +0000 | |
commit | 2865914d56ba15ad3c9e912616d163c4413e46c8 (patch) | |
tree | 91c854e9b51156e89bd796f41d0c7982cc57e8c9 /gnu/usr.bin/perl/lib/ExtUtils/MM_Unix.pm | |
parent | Some more cleanup. No binary change. (diff) | |
download | wireguard-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.pm | 5 |
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"} ||= {}; } |