Skip to content

Commit f449ba7

Browse files
authored
Merge pull request #4576 from gparker42/build-args-fix
[build-script] Fix build args passed to cmake commands that run tests.
2 parents e9d451b + b751eb4 commit f449ba7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2629,7 +2629,7 @@ for host in "${ALL_HOSTS[@]}"; do
26292629

26302630
trap "tests_busted ${product} ''" ERR
26312631
build_dir=$(build_directory ${host} ${product})
2632-
build_cmd=("${CMAKE}" --build "${build_dir}" $(cmake_config_opt ${product}) -- ${BUILD_ARGS})
2632+
build_cmd=("${CMAKE}" --build "${build_dir}" $(cmake_config_opt ${product}) -- "${BUILD_ARGS[@]}")
26332633

26342634
if [[ "${executable_target}" != "" ]]; then
26352635
echo "--- Building tests for ${product} ---"

0 commit comments

Comments
 (0)