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}