summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2015-08-20 22:06:46 +0000
committerChris Bieneman <beanz@apple.com>2015-08-20 22:06:46 +0000
commit4268d39436bf471bee6993efe9999f36cad4cf37 (patch)
tree7dd4903430ab9296e5954b5d13ce3b4d642b21ef
parentcbdfdb74d361727a299f05962c8c24b74f893606 (diff)
downloadbcm5719-llvm-4268d39436bf471bee6993efe9999f36cad4cf37.tar.gz
bcm5719-llvm-4268d39436bf471bee6993efe9999f36cad4cf37.zip
[CMake] Turns out CMake was passing the space as part of the argument instead of separating two arguments.
llvm-svn: 245624
-rw-r--r--compiler-rt/cmake/Modules/CompilerRTCompile.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/cmake/Modules/CompilerRTCompile.cmake b/compiler-rt/cmake/Modules/CompilerRTCompile.cmake
index 289195e4b54..850d109c26d 100644
--- a/compiler-rt/cmake/Modules/CompilerRTCompile.cmake
+++ b/compiler-rt/cmake/Modules/CompilerRTCompile.cmake
@@ -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()
OpenPOWER on IntegriCloud