summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Maat <tristan.maat@codethink.com>2017-07-11 11:54:25 +0100
committerTristan Maat <tristan.maat@codethink.com>2017-07-11 11:59:46 +0100
commitf82550522ea20545527180e300d7885b895141be (patch)
treecdc7f262957ee44a71392fe7a224dbb88fe206e3
parent86578b928f29697b26ab025278f7104d590974ff (diff)
downloadbuildstream-f82550522ea20545527180e300d7885b895141be.tar.gz
main.py: Improve arch help strings
-rw-r--r--buildstream/_frontend/main.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildstream/_frontend/main.py b/buildstream/_frontend/main.py
index f7c748e00..8ffbbd5ab 100644
--- a/buildstream/_frontend/main.py
+++ b/buildstream/_frontend/main.py
@@ -78,11 +78,11 @@ _, _, _, _, host_machine = os.uname()
@click.option('--colors/--no-colors', default=None,
help="Force enable/disable ANSI color codes in output")
@click.option('--arch', '-a', default=host_machine,
- help="Architecture of the machine running the build (default: %s)" % host_machine)
+ help="Machine architecture (default: %s)" % host_machine)
@click.option('--host-arch',
- help="Run as a native build for the given architecture (defaults to --arch)")
+ help="Machine architecture for the sandbox (defaults to --arch)")
@click.option('--target-arch',
- help="Produce elements that execute on this architecture (defaults to --arch)")
+ help="Machine architecture for build output (defaults to --arch)")
@click.pass_context
def cli(context, **kwargs):
"""Build and manipulate BuildStream projects