sanity: Drop setting C locale

We really want the en_US locale as per the configuration and
previous patches. Don't set it back to C as things will break
under python3.

(From OE-Core rev: 42af63f326b03b32019c8b808b7ba07027f209b8)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2016-06-01 15:03:58 +01:00
parent ab75075e79
commit 3c42280b8a
1 changed files with 0 additions and 1 deletions

View File

@ -774,7 +774,6 @@ def sanity_check_locale(d):
locale.setlocale(locale.LC_ALL, "en_US.UTF-8")
except locale.Error:
raise_sanity_error("You system needs to support the en_US.UTF-8 locale.", d)
locale.setlocale(locale.LC_ALL, "C")
def check_sanity_everybuild(status, d):
import os, stat