diff options
author | Brad King <brad.king@kitware.com> | 2014-02-13 15:28:29 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-02-13 15:28:29 (GMT) |
commit | aa23381253e36e29f8eba3a94fa585377c8d0662 (patch) | |
tree | 54e864a0eb97083ee8555e772f7c75c27184508d | |
parent | c56854aa0e9ba08140fcf806008ea473b879a1c1 (diff) | |
parent | 77b2e6f1d838205550f46501b682895d8b38484e (diff) | |
download | CMake-aa23381253e36e29f8eba3a94fa585377c8d0662.zip CMake-aa23381253e36e29f8eba3a94fa585377c8d0662.tar.gz CMake-aa23381253e36e29f8eba3a94fa585377c8d0662.tar.bz2 |
Merge topic 'osx-sysroot-escape'
77b2e6f1 OS X: Escape path given to -isysroot flag
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index b8b7035..aca195c 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1972,7 +1972,7 @@ void cmLocalGenerator::AddArchitectureFlags(std::string& flags, flags += " "; flags += sysrootFlag; flags += " "; - flags += sysroot; + flags += this->Convert(sysroot, NONE, SHELL); } if (deploymentTargetFlag && *deploymentTargetFlag && |