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:53:37 UTC

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

Repository: arrow
Updated Branches:
  refs/heads/master 25ba44c32 -> 1144d0200


ARROW-1115: [C++] use CCACHE_FOUND value for ccache path

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/1144d020
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/1144d020
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/1144d020

Branch: refs/heads/master
Commit: 1144d0200e341ff715953ba33d375453af010b4f
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:10 2017 -0400

----------------------------------------------------------------------
 cpp/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/1144d020/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)
 
 # ----------------------------------------------------------------------