diff options
author | Rene Meusel <[email protected]> | 2019-09-09 19:24:16 +0200 |
---|---|---|
committer | Rene Meusel <[email protected]> | 2019-09-09 19:24:16 +0200 |
commit | 6a93e1d356c6b942dfa90ec78c4e0edfbb677361 (patch) | |
tree | 17b6b7e48d206586cefdd29520b8c3e5ce9146a7 | |
parent | f0b019b9cce2221b281ac13d75e844dfe88dc7f0 (diff) |
FIX: configure command line parameter assembly (2)
-rwxr-xr-x | src/scripts/ci_build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index 69fa36b4d..8123f388f 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -276,7 +276,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro if 'static' not in build_targets and 'shared' not in build_targets: build_targets += ['static', 'shared'] - flags += ['--build-targets="%s"' % ','.join(build_targets)] + flags += ['--build-targets=%s' % ','.join(build_targets)] return flags, run_test_command, make_prefix |