diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-07-22 16:26:18 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-25 12:54:16 +0100 |
commit | bc4aefff9867d3a0fb502f99e086337561ee8a2f (patch) | |
tree | 4d55520af6bcf1a853068a15475a1eabe0d95783 /bitbake | |
parent | 638f8ca4085fc9519a8b1bc9fb212951e7635975 (diff) | |
download | poky-bc4aefff9867d3a0fb502f99e086337561ee8a2f.tar.gz |
adjust comments/messages for default server change
Default server is process, adjust comments and messages accordingly.
(Bitbake rev: 8ba4d0e98401cdb808f727703913ad8ba87f8e71)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-x | bitbake/bin/bitbake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index f198fd1556..8d6fef7b8b 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -172,8 +172,8 @@ Default BBFILES are the .bb files in the current directory.""") | |||
172 | 172 | ||
173 | ui_main = get_ui(configuration) | 173 | ui_main = get_ui(configuration) |
174 | 174 | ||
175 | # Server type could be xmlrpc or none currently, if nothing is specified, | 175 | # Server type can be xmlrpc, process or none currently, if nothing is specified, |
176 | # default server would be none | 176 | # the default server is process |
177 | if configuration.servertype: | 177 | if configuration.servertype: |
178 | server_type = configuration.servertype | 178 | server_type = configuration.servertype |
179 | else: | 179 | else: |
@@ -184,7 +184,7 @@ Default BBFILES are the .bb files in the current directory.""") | |||
184 | server = getattr(module, server_type) | 184 | server = getattr(module, server_type) |
185 | except AttributeError: | 185 | except AttributeError: |
186 | sys.exit("FATAL: Invalid server type '%s' specified.\n" | 186 | sys.exit("FATAL: Invalid server type '%s' specified.\n" |
187 | "Valid interfaces: xmlrpc, process, none [default]." % servertype) | 187 | "Valid interfaces: xmlrpc, process [default], none." % servertype) |
188 | 188 | ||
189 | # Save a logfile for cooker into the current working directory. When the | 189 | # Save a logfile for cooker into the current working directory. When the |
190 | # server is daemonized this logfile will be truncated. | 190 | # server is daemonized this logfile will be truncated. |