diff options
author | Brad King <brad.king@kitware.com> | 2016-04-18 12:57:27 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-04-18 12:57:27 (GMT) |
commit | 0f6a8f7a46f91be249199b356f0cb9b2b508f6b0 (patch) | |
tree | dca6460971f479ccb54e443a539ed2675c063192 /Source | |
parent | 21fb50d5121763fb4c34a831665f7740154c0891 (diff) | |
parent | 32d569af9a7174f53cd2abd0248385bfb7fc1929 (diff) | |
download | CMake-0f6a8f7a46f91be249199b356f0cb9b2b508f6b0.zip CMake-0f6a8f7a46f91be249199b356f0cb9b2b508f6b0.tar.gz CMake-0f6a8f7a46f91be249199b356f0cb9b2b508f6b0.tar.bz2 |
Merge topic 'cmake-gui-osx-install-mkdir'
32d569af cmake-gui: Teach --install make destination directory (#16064)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/QtDialog/CMakeSetup.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/QtDialog/CMakeSetup.cxx b/Source/QtDialog/CMakeSetup.cxx index 4f93a77..cff4f6f 100644 --- a/Source/QtDialog/CMakeSetup.cxx +++ b/Source/QtDialog/CMakeSetup.cxx @@ -217,6 +217,7 @@ static bool cmOSXInstall(std::string const& dir, std::string const& tool) return true; } } + cmSystemTools::MakeDirectory(dir); if (symlink(tool.c_str(), link.c_str()) == 0) { std::cerr << "Linked: '" << link << "' -> '" << tool << "'\n"; |