summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/utils.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index cdb3c6864b..3f7f82d17d 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -13,6 +13,7 @@ import errno
13import logging 13import logging
14import bb 14import bb
15import bb.msg 15import bb.msg
16import locale
16import multiprocessing 17import multiprocessing
17import fcntl 18import fcntl
18import importlib 19import importlib
@@ -606,6 +607,21 @@ def preserved_envvars():
606 ] 607 ]
607 return v + preserved_envvars_exported() 608 return v + preserved_envvars_exported()
608 609
610def check_system_locale():
611 """Make sure the required system locale are available and configured"""
612 default_locale = locale.getlocale(locale.LC_CTYPE)
613
614 try:
615 locale.setlocale(locale.LC_CTYPE, ("en_US", "UTF-8"))
616 except:
617 sys.exit("Please make sure locale 'en_US.UTF-8' is available on your system")
618 else:
619 locale.setlocale(locale.LC_CTYPE, default_locale)
620
621 if sys.getfilesystemencoding() != "utf-8":
622 sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\n"
623 "Python can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
624
609def filter_environment(good_vars): 625def filter_environment(good_vars):
610 """ 626 """
611 Create a pristine environment for bitbake. This will remove variables that 627 Create a pristine environment for bitbake. This will remove variables that