build.py: revert setting LC_ALL=C due to IRC discussion
authorMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Tue, 23 Jan 2007 20:20:58 +0000 (20:20 +0000)
committerMarcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Tue, 23 Jan 2007 20:20:58 +0000 (20:20 +0000)
lib/bb/build.py

index e1adc33..e8adb31 100644 (file)
@@ -188,8 +188,7 @@ def exec_func_shell(func, d):
         maybe_fakeroot = "PATH=\"%s\" fakeroot " % bb.data.getVar("PATH", d, 1)
     else:
         maybe_fakeroot = ''
         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:
     try:
         os.chdir(prevdir)
     except: