From c41b5b6fc3462cd3b1d8946ec1852b5dac7438e9 Mon Sep 17 00:00:00 2001 From: Mariano Lopez Date: Wed, 13 May 2015 11:24:57 +0000 Subject: bitbake: bitbake: fetch2/git: Add URL when latest_revision generates an exception. The URL is not sent when _latest_revision generates and exception. When performing the sanity checks it is not possible to know the URI that failed. This add the URL when latest_revision generates an exception. [YOCTO: #7592] (Bitbake rev: 9f2115b07a55cb14e4a74dc6fbd3707c28a234d0) Signed-off-by: Mariano Lopez Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/git.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bitbake/lib/bb/fetch2/git.py') diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 4cc5811937..2643cda786 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -355,7 +355,8 @@ class Git(FetchMethod): for l in output.split('\n'): if s in l: return l.split()[0] - raise bb.fetch2.FetchError("Unable to resolve '%s' in upstream git repository in git ls-remote output" % ud.unresolvedrev[name]) + raise bb.fetch2.FetchError("Unable to resolve '%s' in upstream git repository in git ls-remote output for %s" % \ + (ud.unresolvedrev[name], ud.host+ud.path)) def latest_versionstring(self, ud, d): """ -- cgit v1.2.3-54-g00ecf