summaryrefslogtreecommitdiffstats
path: root/lib/bb/methodpool.py
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2006-03-23 23:32:03 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2006-03-23 23:32:03 +0000
commitb2d4f4baa1e41026b858db2338b276aef7c754e1 (patch)
tree3117e9ae7486b1919ec51b56f8dfee664c218fe8 /lib/bb/methodpool.py
parent8816a61bbec0e2349757ca80b274f65ed4669b9d (diff)
downloadbitbake-b2d4f4baa1e41026b858db2338b276aef7c754e1.tar.gz
bitbake/lib/bb/cache:
-Fix the method invocation in methodpool to use the right amount of arguments -Update data_smart to the new cache layout of the file functions
Diffstat (limited to 'lib/bb/methodpool.py')
-rw-r--r--lib/bb/methodpool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/methodpool.py b/lib/bb/methodpool.py
index 27bc4be0e..67cb626f2 100644
--- a/lib/bb/methodpool.py
+++ b/lib/bb/methodpool.py
@@ -65,7 +65,7 @@ def check_insert_method(modulename, code, fn):
name will be used for that
"""
if not modulename in _parsed_methods:
- return insert_method(modulename, code)
+ return insert_method(modulename, code, fn)
def parsed_module(modulename):
"""