Skip to content

Commit

Permalink
Fix progress messages for configure in bootstrap_test.py
Browse files Browse the repository at this point in the history
Before it would unconditionally print `configure-args = []`.
  • Loading branch information
jyn514 committed Jun 24, 2023
1 parent 1d67eba commit 7d2373e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 7d2373e

Please sign in to comment.