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 | |
parent | 5a16cb5fd6008819f13060bd949b2dd1416ae0e9 (diff) | |
download | 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')
-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 41848edd29..a39d4374d8 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -875,7 +875,7 @@ class Fetch(object): | |||
875 | uselocalcount = bb.data.getVar("BB_LOCALCOUNT_OVERRIDE", d, True) or False | 875 | uselocalcount = bb.data.getVar("BB_LOCALCOUNT_OVERRIDE", d, True) or False |
876 | count = None | 876 | count = None |
877 | if uselocalcount: | 877 | if uselocalcount: |
878 | count = Fetch.localcount_internal_helper(ud, d) | 878 | count = Fetch.localcount_internal_helper(ud, d, name) |
879 | if count is None: | 879 | if count is None: |
880 | count = localcounts[key + '_count'] or "0" | 880 | count = localcounts[key + '_count'] or "0" |
881 | 881 | ||