[CMake] Turns out CMake was passing the space as part of the argument instead of separating two arguments.

llvm-svn: 245624
This commit is contained in:
Chris Bieneman 2015-08-20 22:06:46 +00:00
parent cbdfdb74d3
commit 4268d39436
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ if (APPLE)
OUTPUT_VARIABLE OSX_SYSROOT
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE)
set(OSX_SYSROOT_FLAG "-isysroot ${OSX_SYSROOT}")
set(OSX_SYSROOT_FLAG "-isysroot${OSX_SYSROOT}")
endif()
endif()