]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake/fetch2: Add missing parameter to localcount_internal_helper
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 2 Feb 2011 18:48:13 +0000 (18:48 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 2 Feb 2011 18:48:13 +0000 (18:48 +0000)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/fetch2/__init__.py

index 41848edd29c9d9e386f0b7d1054bd01ccff188fd..a39d4374d86ba8515e7523a8aa190c398724d2c4 100644 (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"