summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake
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:32:13 +0000
commitd57e29f23516113375d6bc0c146335764de3e736 (patch)
treeb9c0face5a415d25c05ae9cf3bc293f161332dc7 /bitbake/bin/bitbake
parent2c3d5968d9d4c915d58baeed6da8535990b70715 (diff)
downloadpoky-d57e29f23516113375d6bc0c146335764de3e736.tar.gz
bitbake: bitbake: be more explicit when warning about locale choice
(Bitbake rev: 286dce008d6e0bd3121393b28ca02de1385519fb) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin/bitbake')
-rwxr-xr-xbitbake/bin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 431bb4b676..95e4109685 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -36,7 +36,7 @@ from bb import cookerdata
36from bb.main import bitbake_main, BitBakeConfigParameters, BBMainException 36from bb.main import bitbake_main, BitBakeConfigParameters, BBMainException
37 37
38if sys.getfilesystemencoding() != "utf-8": 38if sys.getfilesystemencoding() != "utf-8":
39 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.") 39 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.")
40 40
41__version__ = "1.37.0" 41__version__ = "1.37.0"
42 42