diff options
author | tron <tron@pkgsrc.org> | 2014-11-13 17:48:59 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2014-11-13 17:48:59 +0000 |
commit | 3580298000c0c5575d9982c41dba8450faa8d65b (patch) | |
tree | 7dde42ab5055e5a04fd532f47f2d966f7344c483 /lang/perl5 | |
parent | 3cd529173b194332d83933bed8ddc5e2bb091564 (diff) | |
download | pkgsrc-3580298000c0c5575d9982c41dba8450faa8d65b.tar.gz |
Don't append ".gz" to the filenames of Perl manual page that are already
compress. This fixes the build of e.g. the "p5-YAML-LibYAML" package
if "MANZ" is set.
Diffstat (limited to 'lang/perl5')
-rw-r--r-- | lang/perl5/packlist.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/perl5/packlist.mk b/lang/perl5/packlist.mk index 1a4bfda0308..556e84e846b 100644 --- a/lang/perl5/packlist.mk +++ b/lang/perl5/packlist.mk @@ -1,4 +1,4 @@ -# $NetBSD: packlist.mk,v 1.18 2012/02/21 06:49:21 sbd Exp $ +# $NetBSD: packlist.mk,v 1.19 2014/11/13 17:48:59 tron Exp $ # # This Makefile fragment is intended to be included by packages that # create packlist files. This file is automatically included by @@ -91,7 +91,7 @@ _PERL5_PACKLIST_AWK_STRIP_DESTDIR= ### _PERL5_PACKLIST_MANPAGE_RE= \ - ^(\/[^ \/]*)+\/(man[1-9ln]\/[^ \/]*\.[1-9ln]|cat[1-9ln]\/[^ \/]*\.[0-9])(\.gz)?$$ + ^(\/[^ \/]*)+\/(man[1-9ln]\/[^ \/]*\.[1-9ln]|cat[1-9ln]\/[^ \/]*\.[0-9])$$ _PERL5_PACKLIST_AWK_STRIP_MANZ= \ /${_PERL5_PACKLIST_MANPAGE_RE}\.gz/ \ |