You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/06/13 16:54:04 UTC

arrow git commit: ARROW-1115: [C++] use CCACHE_FOUND value for ccache path [Forced Update!]

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 <ha...@klab.com>
Authored: Tue Jun 13 11:06:17 2017 +0900
Committer: Wes McKinney <we...@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)
 
 # ----------------------------------------------------------------------