diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-09 17:24:16 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-09 17:24:16 +0100 |
commit | 115514b5eb6d02060a5b54192ca5f22ac434422e (patch) | |
tree | 0298893f35fa68fbf053cff7802091c0a3efca2b /bitbake/lib/bb/fetch | |
parent | a743e823bcadefd21ef8e4127a26b42e9fb33fd3 (diff) | |
download | openembedded-core-115514b5eb6d02060a5b54192ca5f22ac434422e.tar.gz openembedded-core-115514b5eb6d02060a5b54192ca5f22ac434422e.tar.bz2 openembedded-core-115514b5eb6d02060a5b54192ca5f22ac434422e.tar.xz openembedded-core-115514b5eb6d02060a5b54192ca5f22ac434422e.zip |
bitbake/fetch: Ensure SRCREV is still set correctly if the pn-X override has been expanded
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index 156b81556..55ffdb84c 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py @@ -648,6 +648,8 @@ class Fetch(object): rev = data.getVar("SRCREV_%s_pn-%s" % (ud.parm['name'], pn), d, 1) if not rev: rev = data.getVar("SRCREV_pn-%s_%s" % (pn, ud.parm['name']), d, 1) + if not rev: + rev = data.getVar("SRCREV_%s" % (ud.parm['name']), d, 1) if not rev: rev = data.getVar("SRCREV", d, 1) if rev == "INVALID": |