Repository: kudu
Updated Branches:
refs/heads/master 9650ac7fa -> ec39756ef
[util] fixed build on MacOS X
This is a follow-up for a9265d92424dc305c480d6c44d006b8545bd2227.
Change-Id: I894adf2d5f961eea567a32c6bb85af8998ce4adb
Reviewed-on: http://gerrit.cloudera.org:8080/3836
Tested-by: Kudu Jenkins
Reviewed-by: Adar Dembo <adar@cloudera.com>
Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/fda036ca
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/fda036ca
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/fda036ca
Branch: refs/heads/master
Commit: fda036ca94ec3a0a4f496cd9f84c7a7d7b7fb93a
Parents: 9650ac7
Author: Alexey Serbin <aserbin@cloudera.com>
Authored: Tue Aug 2 16:54:20 2016 -0700
Committer: Adar Dembo <adar@cloudera.com>
Committed: Wed Aug 3 20:23:47 2016 +0000
----------------------------------------------------------------------
src/kudu/util/CMakeLists.txt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/kudu/blob/fda036ca/src/kudu/util/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/kudu/util/CMakeLists.txt b/src/kudu/util/CMakeLists.txt
index 361209c..4a000b6 100644
--- a/src/kudu/util/CMakeLists.txt
+++ b/src/kudu/util/CMakeLists.txt
@@ -193,7 +193,6 @@ endif()
set(UTIL_LIBS
crcutil
- dl
gflags
glog
gutil
@@ -207,6 +206,7 @@ set(UTIL_LIBS
if(NOT APPLE)
set(UTIL_LIBS
${UTIL_LIBS}
+ dl
rt
vmem)
endif()
@@ -253,11 +253,11 @@ target_link_libraries(kudu_test_main
glog
gmock
kudu_util
- kudu_test_util
- dl)
+ kudu_test_util)
if(NOT APPLE)
target_link_libraries(kudu_test_main
+ dl
rt)
endif()
|