summaryrefslogtreecommitdiff
path: root/www/wml/patches/patch-wml__common_htmlclean_makefile_pl
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2011-09-29 11:12:53 +0000
committerdholland <dholland@pkgsrc.org>2011-09-29 11:12:53 +0000
commit50a5ad90cf2b1425d401c474e5215a627add1aa8 (patch)
treeca25cdd45158b2ea25d260826dd00c8689649030 /www/wml/patches/patch-wml__common_htmlclean_makefile_pl
parent3d32a3e63a582b8b22c745cb14df706a5c6e46d2 (diff)
downloadpkgsrc-50a5ad90cf2b1425d401c474e5215a627add1aa8.tar.gz
This package tries to avoid installing the docs for the subdirs of
wml/wml_common. Don't ask me why; however, make it do so correctly. Otherwise it breaks trying to chmod nothing. Fixes build with recent (or maybe not so recent, dunno how long this has been broken) perl.
Diffstat (limited to 'www/wml/patches/patch-wml__common_htmlclean_makefile_pl')
-rw-r--r--www/wml/patches/patch-wml__common_htmlclean_makefile_pl15
1 files changed, 15 insertions, 0 deletions
diff --git a/www/wml/patches/patch-wml__common_htmlclean_makefile_pl b/www/wml/patches/patch-wml__common_htmlclean_makefile_pl
new file mode 100644
index 00000000000..647ce9d0deb
--- /dev/null
+++ b/www/wml/patches/patch-wml__common_htmlclean_makefile_pl
@@ -0,0 +1,15 @@
+$NetBSD: patch-wml__common_htmlclean_makefile_pl,v 1.1 2011/09/29 11:12:53 dholland Exp $
+
+Suppress building/installation of the docs correctly. Fixes build
+failure with recent Perl.
+
+--- wml_common/htmlclean/Makefile.PL~ 2000-04-19 22:23:08.000000000 +0000
++++ wml_common/htmlclean/Makefile.PL
+@@ -4,4 +4,7 @@ WriteMakefile(
+ 'NAME' => 'HTML::Clean',
+ 'VERSION_FROM' => 'Clean.pm',
+ 'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz' },
++ # suppress docs
++ 'MAN1PODS' => { },
++ 'MAN3PODS' => { }
+ );