summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-02 18:48:13 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-10 23:36:50 +0000
commitf422c499b14977be84125108cb8611f6645ff097 (patch)
tree6770e7297d92540b7fdba1694de85e8ffe7f0cb7
parente8878a7d97fcb186a9c5166bc77a87daaba8ca3d (diff)
downloadbitbake-f422c499b14977be84125108cb8611f6645ff097.tar.gz
bitbake/fetch2: Add missing parameter to localcount_internal_helper
(From Poky rev: 08cd6c1cb9639e958e0c60a02e317a22cf43f880) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index 41848edd2..a39d4374d 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/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"