1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-04-21 21:52:06 +02:00

fix unterminated quotes for cmake install prefix

This commit is contained in:
otavepto 2024-05-27 05:08:12 +03:00
parent a45ab0987b
commit 16d6ad1c31

View file

@ -277,7 +277,7 @@ local function cmake_build(dep_folder, is_32, extra_defs)
return
end
local cmd_install = mycmake.. ' --install "' .. build_dir .. '" --prefix "' .. install_dir
local cmd_install = mycmake.. ' --install "' .. build_dir .. '" --prefix "' .. install_dir .. '"'
print(cmd_install)
local ok = os.execute(cmd_install)
if not ok then