aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2017-10-10 17:26:30 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-07 13:31:09 +0000
commit286dce008d6e0bd3121393b28ca02de1385519fb (patch)
treebd16bcd7dfb7664065d75707fba77f10ce5ed353 /bin
parentcc420f430b1dafd9ca944bea259a564aaab34595 (diff)
downloadbitbake-286dce008d6e0bd3121393b28ca02de1385519fb.tar.gz
bitbake: be more explicit when warning about locale choice
Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bitbake2
-rwxr-xr-xbin/bitbake-worker3
2 files changed, 2 insertions, 3 deletions
diff --git a/bin/bitbake b/bin/bitbake
index 431bb4b67..95e410968 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -36,7 +36,7 @@ from bb import cookerdata
from bb.main import bitbake_main, BitBakeConfigParameters, BBMainException
if sys.getfilesystemencoding() != "utf-8":
- sys.exit("Please use a locale setting which supports utf-8.\nPython can't change the filesystem locale after loading so we need a utf-8 when python starts or things won't work.")
+ sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\nPython can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
__version__ = "1.37.0"
diff --git a/bin/bitbake-worker b/bin/bitbake-worker
index ee2d6224a..e925054b7 100755
--- a/bin/bitbake-worker
+++ b/bin/bitbake-worker
@@ -17,7 +17,7 @@ from multiprocessing import Lock
from threading import Thread
if sys.getfilesystemencoding() != "utf-8":
- sys.exit("Please use a locale setting which supports utf-8.\nPython can't change the filesystem locale after loading so we need a utf-8 when python starts or things won't work.")
+ sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\nPython can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
# Users shouldn't be running this code directly
if len(sys.argv) != 2 or not sys.argv[1].startswith("decafbad"):
@@ -499,4 +499,3 @@ worker_thread.join()
workerlog_write("exitting")
sys.exit(0)
-