From 668485e883b9e951c5bdf77f76634eae6cf02059 Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Wed, 12 Jun 2002 21:04:24 +0000 Subject: [PATCH] Locale hack. --- macros | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/macros b/macros index 7cd98b6..ba33e75 100644 --- a/macros +++ b/macros @@ -112,4 +112,18 @@ #%defattr(-,root,root,-)\ #%{nil} +# Bad hack to set $LANG to C during all RPM builds +%prep %%prep\ +LANG=C\ +export LANG\ +%{nil} +%build %%build\ +LANG=C\ +export LANG\ +%{nil} + +%install %%install\ +LANG=C\ +export LANG\ +%{nil}