lib/bb/fetch/git.py: always use english here
[vuplus_bitbake] / lib / bb / fetch / git.py
index cb97dfc..b194172 100644 (file)
@@ -198,7 +198,7 @@ class Git(Fetch):
             runfetchcmd("git read-tree %s" % (tag),d)
             runfetchcmd("git checkout-index -q -f --prefix=%s -a" % (copath),d)
             bb.mkdirhier(os.path.join(copath, ".git", ""))
-            runfetchcmd("git log %s --max-count=1 --date=iso -- > %s.git/last_commit_info" % (tag, copath),d)
+            runfetchcmd("LANG=\"en\" git log %s --max-count=1 --date=iso -- > %s.git/last_commit_info" % (tag, copath),d)
             runfetchcmd("echo %s > %s.git/branch" % (branch, copath),d)
 
             os.chdir(codir)