From 05c49eaac2d5bb58929b69cbd67dc4fe62cc8a6d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 20 Jan 2008 14:58:00 +0000 Subject: bitbake: Update to 1.8.10 release git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3555 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- bitbake/lib/bb/fetch/git.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/bb/fetch') diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py index 9cc7f4e08..65ea5e5ca 100644 --- a/bitbake/lib/bb/fetch/git.py +++ b/bitbake/lib/bb/fetch/git.py @@ -131,8 +131,9 @@ class Git(Fetch): return "git:" + ud.host + ud.path.replace('/', '.') def _latest_revision(self, url, ud, d): - - bb.msg.note(1, bb.msg.domain.Fetcher, "Calling git ls-remote %s://%s%s %s" % (ud.proto, ud.host, ud.path, ud.branch ) ) + """ + Compute the HEAD revision for the url + """ output = runfetchcmd("git ls-remote %s://%s%s %s" % (ud.proto, ud.host, ud.path, ud.branch), d, True) return output.split()[0] -- cgit v1.2.3