Repository: arrow Updated Branches: refs/heads/master 1144d0200 -> d25ea6314 (forced update)
ARROW-1115: [C++] use CCACHE_FOUND value for ccache path Closes #751 Change-Id: I7afa8a65d4ad1180ff7f8b85da635a68f04e62e3 Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/d25ea631 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/d25ea631 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/d25ea631 Branch: refs/heads/master Commit: d25ea6314bce574bfc6f93e97c542c69442314b4 Parents: 25ba44c Author: Hideo Hattori <hattor...@klab.com> Authored: Tue Jun 13 11:06:17 2017 +0900 Committer: Wes McKinney <wes.mckin...@twosigma.com> Committed: Tue Jun 13 12:53:39 2017 -0400 ---------------------------------------------------------------------- cpp/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/d25ea631/cpp/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index d5483f2..c295fa0 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -57,8 +57,8 @@ endif() find_program(CCACHE_FOUND ccache) if(CCACHE_FOUND) - set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache) - set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache) + set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ${CCACHE_FOUND}) + set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ${CCACHE_FOUND}) endif(CCACHE_FOUND) # ----------------------------------------------------------------------