summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-28 14:32:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-30 09:54:35 +0100
commit3fb25ef24b6c2c337fb9b013aead197ca675305b (patch)
tree6e429b437c09363021d8446b7b2c1a02f8b112f0 /bitbake/bin
parente118ee3ad85cc6e7977bbd6f5a5bd6fe57aef04e (diff)
downloadpoky-3fb25ef24b6c2c337fb9b013aead197ca675305b.tar.gz
bitbake: server/bitbake: Remove launchUI method
With the removal of the none server type, we can remove the launchUI method and simplify the code slightly. (Bitbake rev: 9bef2f2dd0bcaa59528ebcb3c1ce053b7dff1ec6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index a868557a1a..6c43aa8ccf 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -271,7 +271,7 @@ def main():
271 os.environ[k] = cleanedvars[k] 271 os.environ[k] = cleanedvars[k]
272 272
273 try: 273 try:
274 return server.launchUI(ui_main, server_connection.connection, server_connection.events, configParams) 274 return ui_main(server_connection.connection, server_connection.events, configParams)
275 finally: 275 finally:
276 bb.event.ui_queue = [] 276 bb.event.ui_queue = []
277 server_connection.terminate() 277 server_connection.terminate()