diff options
author | Turbo Fredriksson <[email protected]> | 2014-06-09 23:35:42 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2014-06-10 14:50:11 -0700 |
commit | 1e929b97ac3fd0aa752feba9f08caeb5356e9a43 (patch) | |
tree | 34c1f28bf86a8631c7de910fcb3c9062cfea3334 /scripts | |
parent | 4cdcdbff636763fbdae72e2f7e1f9e7971649cca (diff) |
Set LANG to a reasonable default (C)
Set LANG=C before calling 'rpmbuild' to avoid rpmbuild failing on
the translated date string in the changelog.
Signed-off-by: Turbo Fredriksson <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #306
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kmodtool | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kmodtool b/scripts/kmodtool index 852ade021..ce3f04294 100644 --- a/scripts/kmodtool +++ b/scripts/kmodtool @@ -64,7 +64,7 @@ print_akmodtemplate () cat <<EOF %global akmod_install mkdir -p \$RPM_BUILD_ROOT/%{_usrsrc}/akmods/; \\\ -rpmbuild --define "_sourcedir %{_sourcedir}" \\\ +LANG=C rpmbuild --define "_sourcedir %{_sourcedir}" \\\ --define "_srcrpmdir \$RPM_BUILD_ROOT/%{_usrsrc}/akmods/" \\\ -bs --nodeps %{_specdir}/%{name}.spec ; \\\ ln -s \$(ls \$RPM_BUILD_ROOT/%{_usrsrc}/akmods/) \$RPM_BUILD_ROOT/%{_usrsrc}/akmods/${kmodname}-kmod.latest |