summaryrefslogtreecommitdiffstats
path: root/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-28 14:32:55 +0100
commit9bef2f2dd0bcaa59528ebcb3c1ce053b7dff1ec6 (patch)
tree3cc70a51c8528c0781bf3b60605e0db46526dd5c /bin
parent9af03a89605e3db9bce3cea1e0f2d0b6cfaa6fe1 (diff)
downloadbitbake-9bef2f2dd0bcaa59528ebcb3c1ce053b7dff1ec6.tar.gz
server/bitbake: Remove launchUI method
With the removal of the none server type, we can remove the launchUI method and simplify the code slightly. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake b/bin/bitbake
index a868557a1..6c43aa8cc 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -271,7 +271,7 @@ def main():
os.environ[k] = cleanedvars[k]
try:
- return server.launchUI(ui_main, server_connection.connection, server_connection.events, configParams)
+ return ui_main(server_connection.connection, server_connection.events, configParams)
finally:
bb.event.ui_queue = []
server_connection.terminate()