aboutsummaryrefslogtreecommitdiff
path: root/lang/pugs/files/patch-inc-Module-Install-Pugs.pm
diff options
context:
space:
mode:
authorCheng-Lung Sung <clsung@FreeBSD.org>2005-04-13 12:32:14 +0000
committerCheng-Lung Sung <clsung@FreeBSD.org>2005-04-13 12:32:14 +0000
commit374e256f1e250a333ec489fa27efeebd10bd5b8b (patch)
treef196a4ef5e78d215fb6f70abb0441b24c555042b /lang/pugs/files/patch-inc-Module-Install-Pugs.pm
parent631d918bf4a14ad38ed22f007f43d4f08e28514e (diff)
- update to 6.2.0
Notes
Notes: svn path=/head/; revision=133237
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)';
+ }