Skip to content

Commit 59ddf34

Browse files
committed
Fix a syntax error in build script
1 parent 53ebc0a commit 59ddf34

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

utils/build-script-impl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,9 +2527,8 @@ for host in "${ALL_HOSTS[@]}"; do
25272527

25282528
if [[ "${ENABLE_ASAN}" ]] ; then
25292529
# Limit the number of parallel tests.
2530-
num_phys_cpu = $(sysctl hw.physicalcpu | cut -d : -f 2)
25312530
cmake_options+=(
2532-
-DLLVM_LIT_ARGS="--threads=${num_phys_cpu}"
2531+
-DLLVM_LIT_ARGS="--threads=$(sysctl hw.physicalcpu | cut -d : -f 2)"
25332532
)
25342533
fi
25352534
fi

0 commit comments

Comments
 (0)