diff options
| author | jyn <github@jyn.dev> | 2023-06-04 12:10:45 -0500 |
|---|---|---|
| committer | jyn <github@jyn.dev> | 2023-06-23 21:12:06 -0500 |
| commit | 7d2373e48f9fe91520c3a15cd5cd8bd0820b276f (patch) | |
| tree | 1a290a0d707806fb78e19648e3e6fb0053b79084 /src/bootstrap/configure.py | |
| parent | 1d67eba6873b1d551a259a0bbc1e2651b4443e12 (diff) | |
| download | rust-7d2373e48f9fe91520c3a15cd5cd8bd0820b276f.tar.gz rust-7d2373e48f9fe91520c3a15cd5cd8bd0820b276f.zip | |
Fix progress messages for configure in bootstrap_test.py
Before it would unconditionally print `configure-args = []`.
Diffstat (limited to 'src/bootstrap/configure.py')
| -rwxr-xr-x | src/bootstrap/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/configure.py b/src/bootstrap/configure.py index a16f77317c8..76a153b60a3 100755 --- a/src/bootstrap/configure.py +++ b/src/bootstrap/configure.py @@ -280,7 +280,7 @@ def parse_args(args): config = {} - set('build.configure-args', sys.argv[1:], config) + set('build.configure-args', args, config) apply_args(known_args, option_checking, config) return parse_example_config(known_args, config) |
