summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>2007-01-23 20:20:58 +0000
committerMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>2007-01-23 20:20:58 +0000
commit9384b63c51f3610fde2ceb3d148af8f1de8bbc79 (patch)
tree3c37d9f41e53a33e3aeeec3d5a3cbc146c093edf /lib
parent0b347f7abe005d222119da80f18494cea324d8ec (diff)
downloadbitbake-9384b63c51f3610fde2ceb3d148af8f1de8bbc79.tar.gz
build.py: revert setting LC_ALL=C due to IRC discussion
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/build.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/bb/build.py b/lib/bb/build.py
index e1adc3354..e8adb3145 100644
--- a/lib/bb/build.py
+++ b/lib/bb/build.py
@@ -188,8 +188,7 @@ def exec_func_shell(func, d):
maybe_fakeroot = "PATH=\"%s\" fakeroot " % bb.data.getVar("PATH", d, 1)
else:
maybe_fakeroot = ''
- lang_environment = "LC_ALL=C "
- ret = os.system('%s%ssh -e %s' % (lang_environment, maybe_fakeroot, runfile))
+ ret = os.system('%ssh -e %s' % (maybe_fakeroot, runfile))
try:
os.chdir(prevdir)
except: