summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2014-03-10 15:28:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-11 12:27:24 -0700
commite1d7a45bb662327e64d0624ab7eaba4d8947033a (patch)
treee5a33aa65304da9f7a67434414d52a9101b324e5 /bitbake/bin
parentbf01a9a28f2ee935f4686c17e5ea427d4cf914be (diff)
downloadpoky-e1d7a45bb662327e64d0624ab7eaba4d8947033a.tar.gz
bitbake: bitbake: fix typo in variable name
When passing -t with an incorrect server type, the error message was using a variable that doesn't exist. (Bitbake rev: 98b991287df06cd89955c1d0591fce3b5d4403d1) Signed-off-by: Ross Burton <ross.burton@intel.com> 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 cbfd2c97b6..5c0b2d4d2a 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -259,7 +259,7 @@ def main():
259 servermodule = getattr(module, server_type) 259 servermodule = getattr(module, server_type)
260 except AttributeError: 260 except AttributeError:
261 sys.exit("FATAL: Invalid server type '%s' specified.\n" 261 sys.exit("FATAL: Invalid server type '%s' specified.\n"
262 "Valid interfaces: xmlrpc, process [default]." % servertype) 262 "Valid interfaces: xmlrpc, process [default]." % server_type)
263 263
264 if configParams.server_only: 264 if configParams.server_only:
265 if configParams.servertype != "xmlrpc": 265 if configParams.servertype != "xmlrpc":