From: Richard Purdie Date: Thu, 30 Nov 2006 11:18:11 +0000 (+0000) Subject: bitbake: Fix a couple of typos in the bitbake shell X-Git-Tag: rev_ivi_2015_02_04~32885 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=708b0c14c0024e26b6a05ea04f8ccca3b97eae31;p=scm%2Fbb%2Ftizen-distro.git bitbake: Fix a couple of typos in the bitbake shell git-svn-id: https://svn.o-hand.com/repos/poky/trunk@990 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 36322d2..6ae5bfa 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -337,7 +337,7 @@ class BBCooker: bb.msg.fatal(bb.msg.domain.Parsing, "Sorry, shell not available (%s)" % details ) else: bb.data.update_data( self.configuration.data ) - bb.data.expandKeys(localdata) + bb.data.expandKeys( self.configuration.data ) shell.start( self ) sys.exit( 0 ) diff --git a/bitbake/lib/bb/shell.py b/bitbake/lib/bb/shell.py index 711cd43..cb8e97b 100644 --- a/bitbake/lib/bb/shell.py +++ b/bitbake/lib/bb/shell.py @@ -181,7 +181,7 @@ class BitBakeShellCommands: except runqueue.TaskFailure, fnids: for fnid in fnids: - print "ERROR: '%s' failed" % td.fn_index[fnid]) + print "ERROR: '%s' failed" % td.fn_index[fnid] global last_exception last_exception = runqueue.TaskFailure