From: ghost Date: Thu, 19 Nov 2009 17:53:47 +0000 (+0100) Subject: lib/bb/fetch/git.py: always use english here X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_bitbake;a=commitdiff_plain lib/bb/fetch/git.py: always use english here --- diff --git a/lib/bb/fetch/git.py b/lib/bb/fetch/git.py index cb97dfc..b194172 100644 --- a/lib/bb/fetch/git.py +++ b/lib/bb/fetch/git.py @@ -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)