X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_bitbake;a=blobdiff_plain;f=lib%2Fbb%2Ffetch%2Fgit.py;h=b194172a75dc6b9921ae2a4395c4366c3a72e812;hp=cb97dfc653efa99ab3e5bce7bb7cd30eb4e8b717;hb=887311e8d25aab718bf8ba070f04db04b2d56b35;hpb=7d9f8f6afd9a9ccb1360bc9e232a59ef3544e302 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)