You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@htrace.apache.org by cm...@apache.org on 2015/07/17 23:05:27 UTC

incubator-htrace git commit: HTRACE-183 addendum: C unit tests need to be updated to find htraced

Repository: incubator-htrace
Updated Branches:
  refs/heads/master 0fd8d21a8 -> 9944d1ec7


HTRACE-183 addendum: C unit tests need to be updated to find htraced

(cherry picked from commit 6b2b77810a72a5a39adb9d0923568059ab821d0c)


Project: http://git-wip-us.apache.org/repos/asf/incubator-htrace/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-htrace/commit/9944d1ec
Tree: http://git-wip-us.apache.org/repos/asf/incubator-htrace/tree/9944d1ec
Diff: http://git-wip-us.apache.org/repos/asf/incubator-htrace/diff/9944d1ec

Branch: refs/heads/master
Commit: 9944d1ec73735cc05e884687d3e0b08be4d9f5a0
Parents: 0fd8d21
Author: Colin Patrick Mccabe <cm...@cloudera.com>
Authored: Fri Jul 17 13:59:45 2015 -0700
Committer: Colin Patrick Mccabe <cm...@cloudera.com>
Committed: Fri Jul 17 14:03:23 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/9944d1ec/htrace-c/src/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/htrace-c/src/CMakeLists.txt b/htrace-c/src/CMakeLists.txt
index da08ee9..fed850d 100644
--- a/htrace-c/src/CMakeLists.txt
+++ b/htrace-c/src/CMakeLists.txt
@@ -44,8 +44,8 @@ INCLUDE(CheckCSourceCompiles)
 CHECK_C_SOURCE_COMPILES("int main(void) { static __thread int i = 0; return 0; }" HAVE_IMPROVED_TLS)
 CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/util/build.h.cmake ${CMAKE_BINARY_DIR}/util/build.h)
 
-get_filename_component(HTRACE_ABSPATH "../../htrace-htraced/src/go/build/htrace" ABSOLUTE)
-get_filename_component(HTRACED_ABSPATH "../../htrace-htraced/src/go/build/htraced" ABSOLUTE)
+get_filename_component(HTRACE_ABSPATH "../../htrace-htraced/go/build/htrace" ABSOLUTE)
+get_filename_component(HTRACED_ABSPATH "../../htrace-htraced/go/build/htraced" ABSOLUTE)
 CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/test/test_config.h.cmake ${CMAKE_BINARY_DIR}/test/test_config.h)
 
 find_package(PkgConfig)