diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 60aaf3902a..ad898680ff 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -1146,7 +1146,7 @@ def srcrev_internal_helper(ud, d, name): | |||
1146 | pn = d.getVar("PN") | 1146 | pn = d.getVar("PN") |
1147 | attempts = [] | 1147 | attempts = [] |
1148 | if name != '' and pn: | 1148 | if name != '' and pn: |
1149 | attempts.append("SRCREV_%s_pn-%s" % (name, pn)) | 1149 | attempts.append("SRCREV_%s:pn-%s" % (name, pn)) |
1150 | if name != '': | 1150 | if name != '': |
1151 | attempts.append("SRCREV_%s" % name) | 1151 | attempts.append("SRCREV_%s" % name) |
1152 | if pn: | 1152 | if pn: |