You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by da...@apache.org on 2017/05/11 23:05:34 UTC

kudu git commit: cmake: fix protoc dependency typo

Repository: kudu
Updated Branches:
  refs/heads/master b2d247fa4 -> a7e8994e4


cmake: fix protoc dependency typo

The effect of this typo was that protoc would always be statically
linked. Since it's only a build-time dependency, we never noticed
previously.

Change-Id: Ide6f69332527f56347b2ee3e3fc6e5b4bb543fa3
Reviewed-on: http://gerrit.cloudera.org:8080/6869
Reviewed-by: Todd Lipcon <to...@apache.org>
Tested-by: Kudu Jenkins


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/a7e8994e
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/a7e8994e
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/a7e8994e

Branch: refs/heads/master
Commit: a7e8994e446035897a79e26f4cfd12258b62e0cd
Parents: b2d247f
Author: Dan Burkert <da...@apache.org>
Authored: Thu May 11 15:08:56 2017 -0700
Committer: Dan Burkert <da...@apache.org>
Committed: Thu May 11 23:05:20 2017 +0000

----------------------------------------------------------------------
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/a7e8994e/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6c2a7c5..c0bca83 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -810,7 +810,7 @@ ADD_THIRDPARTY_LIB(protobuf
   SHARED_LIB "${PROTOBUF_SHARED_LIBRARY}")
 ADD_THIRDPARTY_LIB(protoc
   STATIC_LIB "${PROTOBUF_PROTOC_STATIC_LIBRARY}"
-  SHARED_LIB "${PROTOBUF_PROTOC_LIBRARY}"
+  SHARED_LIB "${PROTOBUF_PROTOC_SHARED_LIBRARY}"
   DEPS protobuf)
 find_package(KRPC REQUIRED)