From 3c42280b8a5cac184311a59589849fec4e215a14 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 1 Jun 2016 15:03:58 +0100 Subject: 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 --- meta/classes/sanity.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 3d5ace20a7..a392bc29d1 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -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 -- cgit v1.2.3-54-g00ecf