diff options
author | rillig <rillig@pkgsrc.org> | 2020-03-23 22:26:21 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-03-23 22:26:21 +0000 |
commit | 941ebf74dc6170f3a1058169a05ec280ebb36053 (patch) | |
tree | ca9eb6340725b5092494ad84a1e1c05a5f075c36 /net/p5-IO-Interface | |
parent | cac50c1dfd516a246ed47a3da178d7617f6caef7 (diff) | |
download | pkgsrc-941ebf74dc6170f3a1058169a05ec280ebb36053.tar.gz |
net/p5-IO-Interface: fix warning about USE_TOOLS+=perl
This Perl module is one of the few that actually calls the Perl
interpreter by its base name and not by the executable given in an
environment variable. Therefore it needs the USE_TOOLS+=perl line.
The call to perl comes from Build.PL and works around a warning during
the build.
Diffstat (limited to 'net/p5-IO-Interface')
-rw-r--r-- | net/p5-IO-Interface/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/p5-IO-Interface/Makefile b/net/p5-IO-Interface/Makefile index f5012eeab42..7d9571e6722 100644 --- a/net/p5-IO-Interface/Makefile +++ b/net/p5-IO-Interface/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.30 2019/08/11 13:22:15 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2020/03/23 22:26:21 rillig Exp $ # DISTNAME= IO-Interface-1.09 PKGNAME= p5-${DISTNAME} -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=IO/} @@ -14,6 +14,7 @@ LICENSE= artistic-2.0 PERL5_PACKLIST= auto/IO/Interface/.packlist PERL5_MODULE_TYPE= Module::Build +USE_TOOLS= perl .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" |