summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch2/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 5fff6966ae..4e286ca96f 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -736,7 +736,7 @@ class Git(FetchMethod):
736 Compute the HEAD revision for the url 736 Compute the HEAD revision for the url
737 """ 737 """
738 if not d.getVar("__BBSEENSRCREV"): 738 if not d.getVar("__BBSEENSRCREV"):
739 raise bb.fetch2.FetchError("Recipe uses a floating tag/branch without a fixed SRCREV yet doesn't call bb.fetch2.get_srcrev() (use SRCPV in PV for OE).") 739 raise bb.fetch2.FetchError("Recipe uses a floating tag/branch '%s' for repo '%s' without a fixed SRCREV yet doesn't call bb.fetch2.get_srcrev() (use SRCPV in PV for OE)." % (ud.unresolvedrev[name], ud.host+ud.path))
740 740
741 # Ensure we mark as not cached 741 # Ensure we mark as not cached
742 bb.fetch2.get_autorev(d) 742 bb.fetch2.get_autorev(d)