[Cmake-commits] CMake branch, next, updated. v3.5.1-965-g28fa4d3
Brad King
brad.king at kitware.com
Fri Apr 15 13:35:53 EDT 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 28fa4d3e9a246387cd1fa6f971ca2db5e6f46255 (commit)
via 32d569af9a7174f53cd2abd0248385bfb7fc1929 (commit)
from 87bfd4ea4dd5c84df94434d2ed150038b4801945 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=28fa4d3e9a246387cd1fa6f971ca2db5e6f46255
commit 28fa4d3e9a246387cd1fa6f971ca2db5e6f46255
Merge: 87bfd4e 32d569a
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Apr 15 13:35:52 2016 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Apr 15 13:35:52 2016 -0400
Merge topic 'cmake-gui-osx-install-mkdir' into next
32d569af cmake-gui: Teach --install make destination directory (#16064)
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=32d569af9a7174f53cd2abd0248385bfb7fc1929
commit 32d569af9a7174f53cd2abd0248385bfb7fc1929
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Apr 15 13:23:02 2016 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Fri Apr 15 13:23:41 2016 -0400
cmake-gui: Teach --install make destination directory (#16064)
Ensure the destination directory exists before creating symlinks in it.
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";
-----------------------------------------------------------------------
Summary of changes:
Source/QtDialog/CMakeSetup.cxx | 1 +
1 file changed, 1 insertion(+)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list