File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -106,9 +106,15 @@ if [[ "$host_arch" == "wasm" ]]; then
106
106
fi
107
107
fi
108
108
109
- buildsys_command=" $cmake_command --no-warn-unused-cli -G \" $generator \" \" -DCMAKE_BUILD_TYPE=$buildtype \" \" -DCMAKE_INSTALL_PREFIX=$__CMakeBinDir \" $cmake_extra_defines $__UnprocessedCMakeArgs \" ${cmake_extra_defines_wasm[@]} \" -S \" $1 \" -B \" $2 \" "
110
- buildsys_command=$( echo $buildsys_command | sed ' s/""//g' )
111
- echo $buildsys_command
112
- eval $buildsys_command
109
+ $cmake_command \
110
+ --no-warn-unused-cli \
111
+ -G " $generator " \
112
+ " -DCMAKE_BUILD_TYPE=$buildtype " \
113
+ " -DCMAKE_INSTALL_PREFIX=$__CMakeBinDir " \
114
+ $cmake_extra_defines \
115
+ $__UnprocessedCMakeArgs \
116
+ " ${cmake_extra_defines_wasm[@]} " \
117
+ -S " $1 " \
118
+ -B " $2 "
113
119
114
120
# don't add anything after this line so the cmake exit code gets propagated correctly
You can’t perform that action at this time.
0 commit comments