diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-02 18:48:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-02 18:48:13 +0000 |
commit | 08cd6c1cb9639e958e0c60a02e317a22cf43f880 (patch) | |
tree | 24ec31eb19a521fc0eaec34b0642947d62b9930b /bitbake/lib | |
parent | 5a16cb5fd6008819f13060bd949b2dd1416ae0e9 (diff) | |
download | ast2050-yocto-poky-08cd6c1cb9639e958e0c60a02e317a22cf43f880.zip ast2050-yocto-poky-08cd6c1cb9639e958e0c60a02e317a22cf43f880.tar.gz |
bitbake/fetch2: Add missing parameter to localcount_internal_helper
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, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 41848ed..a39d437 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py @@ -875,7 +875,7 @@ class Fetch(object): uselocalcount = bb.data.getVar("BB_LOCALCOUNT_OVERRIDE", d, True) or False count = None if uselocalcount: - count = Fetch.localcount_internal_helper(ud, d) + count = Fetch.localcount_internal_helper(ud, d, name) if count is None: count = localcounts[key + '_count'] or "0" |