aboutsummaryrefslogtreecommitdiff
path: root/lang/pugs/files/patch-inc-Module-Install-Pugs.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lang/pugs/files/patch-inc-Module-Install-Pugs.pm')
-rw-r--r--lang/pugs/files/patch-inc-Module-Install-Pugs.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/lang/pugs/files/patch-inc-Module-Install-Pugs.pm b/lang/pugs/files/patch-inc-Module-Install-Pugs.pm
new file mode 100644
index 000000000000..82f2f0397de8
--- /dev/null
+++ b/lang/pugs/files/patch-inc-Module-Install-Pugs.pm
@@ -0,0 +1,13 @@
+--- inc/Module/Install/Pugs.pm (revision 12842)
++++ inc/Module/Install/Pugs.pm (local)
+@@ -75,8 +75,8 @@
+ File::Spec->catfile($path, "man1");
+ $self->makemaker_args->{INST_MAN3DIR} =
+ File::Spec->catfile($path, "man3");
+- $self->makemaker_args->{MAN1PODS} = {};
+- $self->makemaker_args->{MAN3PODS} = {};
++ $self->makemaker_args->{MAN1PODS} = {} if $perl_version == 6;
++ $self->makemaker_args->{MAN3PODS} = {} if $perl_version == 6;
+ $self->{MM}{INST_AUTODIR} = '$(INST_LIB)/$(BASEEXT)';
+ $self->{MM}{INST_ARCHAUTODIR} = '$(INST_ARCHLIB)/$(FULLEXT)';
+ }