diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-04 14:37:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 09:06:37 +0000 |
commit | 8f2abf4a9f000d42e98c4936e393bd5033a1af48 (patch) | |
tree | 8f265af37ffe470a3872abf4170696b5d64918e9 /bitbake/lib | |
parent | ee6f34483a9bfeca5b5c3656fd62bb4849d5fbb8 (diff) | |
download | poky-8f2abf4a9f000d42e98c4936e393bd5033a1af48.tar.gz |
bitbake/fetch2: Drop name/override ordering backwards compatibility code
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 43ee1562cd..c7e058d0d6 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -466,8 +466,6 @@ def srcrev_internal_helper(ud, d, name): | |||
466 | pn = data.getVar("PN", d, 1) | 466 | pn = data.getVar("PN", d, 1) |
467 | rev = data.getVar("SRCREV_%s_pn-%s" % (name, pn), d, 1) | 467 | rev = data.getVar("SRCREV_%s_pn-%s" % (name, pn), d, 1) |
468 | if not rev: | 468 | if not rev: |
469 | rev = data.getVar("SRCREV_pn-%s_%s" % (pn, name), d, 1) | ||
470 | if not rev: | ||
471 | rev = data.getVar("SRCREV_%s" % name, d, 1) | 469 | rev = data.getVar("SRCREV_%s" % name, d, 1) |
472 | if not rev: | 470 | if not rev: |
473 | rev = data.getVar("SRCREV", d, 1) | 471 | rev = data.getVar("SRCREV", d, 1) |