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/02/08 17:16:43 UTC

kudu git commit: Add missing pb_util_proto dependency to token_proto

Repository: kudu
Updated Branches:
  refs/heads/master 4f0677f84 -> 93df70337


Add missing pb_util_proto dependency to token_proto

Change-Id: I63f743bcf4b36a884c58a292a7eb03bf9098f78b
Reviewed-on: http://gerrit.cloudera.org:8080/5932
Reviewed-by: Alexey Serbin <as...@cloudera.com>
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/93df7033
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/93df7033
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/93df7033

Branch: refs/heads/master
Commit: 93df70337edbe123eceb5e42ebc3875e2e1daddd
Parents: 4f0677f
Author: Dan Burkert <da...@apache.org>
Authored: Tue Feb 7 15:17:48 2017 -0800
Committer: David Ribeiro Alves <dr...@apache.org>
Committed: Wed Feb 8 00:34:30 2017 +0000

----------------------------------------------------------------------
 src/kudu/security/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/93df7033/src/kudu/security/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/kudu/security/CMakeLists.txt b/src/kudu/security/CMakeLists.txt
index c57a9e0..afa78d2 100644
--- a/src/kudu/security/CMakeLists.txt
+++ b/src/kudu/security/CMakeLists.txt
@@ -38,7 +38,7 @@ KRPC_GENERATE(
   SOURCE_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../..
   BINARY_ROOT ${CMAKE_CURRENT_BINARY_DIR}/../..
   PROTO_FILES token.proto)
-set(TOKEN_PROTO_LIBS protobuf)
+set(TOKEN_PROTO_LIBS protobuf pb_util_proto)
 ADD_EXPORTABLE_LIBRARY(token_proto
   SRCS ${TOKEN_PROTO_SRCS}
   DEPS ${TOKEN_PROTO_LIBS}