aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/parse
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2005-05-17 22:47:14 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2005-05-17 22:47:14 +0000
commit5addf5a560142a6ed2ac362c0d379ae89b9c69f0 (patch)
treeb9e95b3b7b72f51ce991e8ef086b863fa2605fcd /lib/bb/parse
parent77e7db02ba721211362517b1e63650d122762c3c (diff)
downloadbitbake-5addf5a560142a6ed2ac362c0d379ae89b9c69f0.tar.gz
lib/bb/data.py:
-Remove default arguments from the data methods. They cast errors. (we need to update the test case though) lib/bb/parse/ConfHandler.py: -Use the right dictionary
Diffstat (limited to 'lib/bb/parse')
-rw-r--r--lib/bb/parse/ConfHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/parse/ConfHandler.py b/lib/bb/parse/ConfHandler.py
index c001044b8..70451d649 100644
--- a/lib/bb/parse/ConfHandler.py
+++ b/lib/bb/parse/ConfHandler.py
@@ -32,7 +32,7 @@ def init(data):
if not bb.data.getVar('TOPDIR', data):
bb.data.setVar('TOPDIR', os.getcwd(), data)
if not bb.data.getVar('BBPATH', data):
- bb.data.setVar('BBPATH', os.path.join(sys.prefix, 'share', 'bitbake'))
+ bb.data.setVar('BBPATH', os.path.join(sys.prefix, 'share', 'bitbake'), data)
def supports(fn, d):
return localpath(fn, d)[-5:] == ".conf"