*Actually* fix CMake quoting issue

This commit is contained in:
RichardG867
2021-11-08 23:23:13 -03:00
parent 0cbf23fda3
commit 74ec220a37

View File

@@ -214,7 +214,7 @@ EOF
# Run CMake.
cmake_flags_extra="$cmake_flags_extra -D BUILD_TYPE=\"$BUILD_TYPE\" -D EMU_BUILD=\"$build_qualifier\" -D EMU_GIT_HASH=\"$git_hash\""
echo [-] Running CMake with flags [$cmake_flags $cmake_flags_extra]
eval cmake -G "Unix Makefiles" $cmake_flags $cmake_flags_extra .
eval cmake -G \"Unix Makefiles\" $cmake_flags $cmake_flags_extra .
local status=$?
if [ $? -gt 0 ]
then