1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

bitbake/fetch2: Drop name/override ordering backwards compatibility code

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-02-04 14:37:09 +00:00
parent ee6f34483a
commit 8f2abf4a9f
-2
View File
@@ -465,8 +465,6 @@ def srcrev_internal_helper(ud, d, name):
if name != '':
pn = data.getVar("PN", d, 1)
rev = data.getVar("SRCREV_%s_pn-%s" % (name, pn), d, 1)
if not rev:
rev = data.getVar("SRCREV_pn-%s_%s" % (pn, name), d, 1)
if not rev:
rev = data.getVar("SRCREV_%s" % name, d, 1)
if not rev: