diff options
author | recht <recht> | 2004-05-05 08:29:44 +0000 |
---|---|---|
committer | recht <recht> | 2004-05-05 08:29:44 +0000 |
commit | 9794a5f462b254fc4593c76078fb2c612dc95f7c (patch) | |
tree | adfabd63b9a8b89eefd2a6e2bc002e7c3aa21c96 /lang | |
parent | 08bbc72ef2aa4ee3571c9e8fa13363baee07650d (diff) | |
download | pkgsrc-9794a5f462b254fc4593c76078fb2c612dc95f7c.tar.gz |
Set LC_ALL=C while doing perl5-configure. This fixes the problem that
the PERL defintionen in the Makefile resulting from Makefile.PL gets
set to 0 if LANG || LC_<something> is set to something else (read non english).
ok'd by jlam@
Diffstat (limited to 'lang')
-rw-r--r-- | lang/perl5/module.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/perl5/module.mk b/lang/perl5/module.mk index e4ecfbda49a..e7e3876368f 100644 --- a/lang/perl5/module.mk +++ b/lang/perl5/module.mk @@ -1,4 +1,4 @@ -# $NetBSD: module.mk,v 1.33 2004/01/21 09:40:49 jlam Exp $ +# $NetBSD: module.mk,v 1.34 2004/05/05 08:29:44 recht Exp $ # # This Makefile fragment is intended to be included by packages that build # and install perl5 modules. @@ -58,6 +58,7 @@ MAKE_PARAMS+= CC="${CC}" .undef USE_GCC3 .endif +MAKE_ENV+= LC_ALL=C .PHONY: perl5-configure perl5-configure: ${_PKG_SILENT}${_PKG_DEBUG} \ |