Browse Source

Fixed the build of the parser when its path has spaces.

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/1146/head
Dimitar Dobrev 7 years ago
parent
commit
21d2dbdbe5
  1. 2
      build/LLVM.lua

2
build/LLVM.lua

@ -89,7 +89,7 @@ function CopyClangIncludes() @@ -89,7 +89,7 @@ function CopyClangIncludes()
end
if os.isdir(clangBuiltinIncludeDir) then
postbuildcommands { string.format("{COPY} %s %%{cfg.buildtarget.directory}", clangBuiltinIncludeDir) }
postbuildcommands { string.format('{COPY} "%s" "%%{cfg.buildtarget.directory}"', clangBuiltinIncludeDir) }
end
end

Loading…
Cancel
Save