summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/recipetool/updatesrcrev.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/recipetool/updatesrcrev.py b/lib/recipetool/updatesrcrev.py
index 0c6fb19..2a48b64 100644
--- a/lib/recipetool/updatesrcrev.py
+++ b/lib/recipetool/updatesrcrev.py
@@ -50,6 +50,10 @@ def updatesrcrev(args):
if not src_uri.startswith(('git://', 'gitsm://')):
continue
+ # Workaround check in fetcher code, see bitbake commit 4b5eed16
+ if not "AUTOINC" in pv:
+ pkgpv = bb.fetch2.get_srcrev(rd, 'gitpkgv_revision')
+
ud = bb.fetch2.FetchData(src_uri, rd)
# Allow multiple "named" git repos
for name in ud.names: