diff options
author | skv <skv@FreeBSD.org> | 2003-07-29 16:14:39 +0000 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2003-07-29 16:14:39 +0000 |
commit | 676a97ecff82bf499692997099359e9731a60043 (patch) | |
tree | da625f3382269b5ce0c9a50fb66134eee0609804 /www/p5-Apache-Test/files | |
parent | a7c8beefb32eb6d46e9fd3cca7fbcaaf3d2e179b (diff) | |
download | FreeBSD-ports-676a97ecff82bf499692997099359e9731a60043.zip FreeBSD-ports-676a97ecff82bf499692997099359e9731a60043.tar.gz |
Fixes:
1. remove using 'warnings.pm' if perl < 5.6.0
2. change PERLRUN to PERL if perl < 5.8.0
3. fix damned error with pm_name=~/Config/
PR: ports/54771
Diffstat (limited to 'www/p5-Apache-Test/files')
-rw-r--r-- | www/p5-Apache-Test/files/500503-Makefile.PL | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/www/p5-Apache-Test/files/500503-Makefile.PL b/www/p5-Apache-Test/files/500503-Makefile.PL new file mode 100644 index 0000000..167fc44 --- /dev/null +++ b/www/p5-Apache-Test/files/500503-Makefile.PL @@ -0,0 +1,14 @@ +--- Makefile.PL.orig Tue Jul 29 19:24:18 2003 ++++ Makefile.PL Tue Jul 29 19:25:42 2003 +@@ -73,6 +73,11 @@ + return $string; + } + ++sub MY::manifypods { ++ package MY; my $self=shift; ++ $self->{MAN3PODS}->{'lib/Apache/TestConfig.pm'}='$(INST_MAN3DIR)/Apache::TestConfig.$(MAN3EXT)'; ++ $self->SUPER::manifypods(@_); ++} + + sub add_dep { + my($string, $targ, $add) = @_; |