summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-20 11:53:31 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:34 +0100
commitc3eae29efa2318ee4f12b1e1c8d562e18d1cee87 (patch)
tree66adc15f52ffd35621389d9de05df3adf76a1f90 /bitbake/lib/bb/cooker.py
parent214d1f7433fd8571c3e0920624ce07f31c7f08c9 (diff)
downloadpoky-c3eae29efa2318ee4f12b1e1c8d562e18d1cee87.tar.gz
Don't try to expand non-string values
(Bitbake rev: fe36a726b9f930bbd6fd758c0aee78559e95f02b) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 613654db85..96fdb66270 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -567,7 +567,7 @@ class BBCooker:
567 567
568 # Nomally we only register event handlers at the end of parsing .bb files 568 # Nomally we only register event handlers at the end of parsing .bb files
569 # We register any handlers we've found so far here... 569 # We register any handlers we've found so far here...
570 for var in data.getVar('__BBHANDLERS', self.configuration.data) or []: 570 for var in bb.data.getVar('__BBHANDLERS', self.configuration.data) or []:
571 bb.event.register(var, bb.data.getVar(var, self.configuration.data)) 571 bb.event.register(var, bb.data.getVar(var, self.configuration.data))
572 572
573 bb.fetch.fetcher_init(self.configuration.data) 573 bb.fetch.fetcher_init(self.configuration.data)