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:
parent
a45ab0987b
commit
16d6ad1c31
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue