summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
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: