bitbake/fetch2: Add missing parameter to localcount_internal_helper

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-02-02 18:48:13 +00:00
parent 5a16cb5fd6
commit 08cd6c1cb9
1 changed files with 1 additions and 1 deletions

View File

@ -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"