rustbuild: Fix the --build argument to bootstrap.py

This makes the --build argument also apply for the downloading of the
stage0 toolchain and building rustbuild.

Fixes #42116
This commit is contained in:
Segev Finer 2017-07-21 14:11:18 +03:00
parent d361efac26
commit c41ac2e11a
1 changed files with 2 additions and 1 deletions

View File

@ -596,6 +596,7 @@ class RustBuild(object):
def bootstrap():
parser = argparse.ArgumentParser(description='Build rust')
parser.add_argument('--config')
parser.add_argument('--build')
parser.add_argument('--clean', action='store_true')
parser.add_argument('-v', '--verbose', action='store_true')
@ -669,7 +670,7 @@ def bootstrap():
rb.update_submodules()
# Fetch/build the bootstrap
rb.build = rb.build_triple()
rb.build = args.build or rb.build_triple()
rb.download_stage0()
sys.stdout.flush()
rb.build_bootstrap()