diff options
author | heinz <heinz@pkgsrc.org> | 2007-04-22 09:25:24 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2007-04-22 09:25:24 +0000 |
commit | ce93774a2a05bccc32485097762c188fb89ba3c2 (patch) | |
tree | 3c55e932250b59c722b944e56d2ffc2a91d4b3c7 /misc | |
parent | abd6054c1cafcee0b88255884bf2f4e02f56ef9c (diff) | |
download | pkgsrc-ce93774a2a05bccc32485097762c188fb89ba3c2.tar.gz |
Made pkgsrc stop complaining about non-existing interpreter "/bin/false".
We have no variable in pkgsrc for the "false" program located in the
filesystem which we could use with REPLACE_INTERPRETER; most definitions
in mk/tools/tools.*.mk refer to the builtin shell command.
Anyway, being able to run a script with the "false" program _really_
doesn't make much sense.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/p5-Locale-libintl/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/misc/p5-Locale-libintl/Makefile b/misc/p5-Locale-libintl/Makefile index 8287bb93a48..83d77726383 100644 --- a/misc/p5-Locale-libintl/Makefile +++ b/misc/p5-Locale-libintl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2007/04/22 09:13:41 heinz Exp $ +# $NetBSD: Makefile,v 1.4 2007/04/22 09:25:24 heinz Exp $ P5_LIBINTL_VER= 1.16 DISTNAME= libintl-perl-${P5_LIBINTL_VER} @@ -16,6 +16,14 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews PKG_DESTDIR_SUPPORT= user-destdir PERL5_PACKLIST= auto/libintl-perl/.packlist +CHECK_INTERPRETER_SKIP+=${PERL5_SUB_INSTALLVENDORLIB}/Locale/Recode.pm +CHECK_INTERPRETER_SKIP+=${PERL5_SUB_INSTALLVENDORLIB}/Locale/Recode/*.pm +CHECK_INTERPRETER_SKIP+=${PERL5_SUB_INSTALLVENDORLIB}/Locale/RecodeData.pm +CHECK_INTERPRETER_SKIP+=${PERL5_SUB_INSTALLVENDORLIB}/Locale/RecodeData/*.pm +CHECK_INTERPRETER_SKIP+=${PERL5_SUB_INSTALLVENDORLIB}/Locale/Messages.pm +CHECK_INTERPRETER_SKIP+=${PERL5_SUB_INSTALLVENDORLIB}/Locale/TextDomain.pm +CHECK_INTERPRETER_SKIP+=${PERL5_SUB_INSTALLVENDORLIB}/Locale/gettext_pp.pm +CHECK_INTERPRETER_SKIP+=${PERL5_SUB_INSTALLVENDORLIB}/Locale/gettext_xs.pod .include "../../devel/gettext-lib/buildlink3.mk" .include "../../lang/perl5/module.mk" |