You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bb...@apache.org on 2017/10/31 22:52:36 UTC

mesos git commit: Fixed Protobuf header dependency.

Repository: mesos
Updated Branches:
  refs/heads/master fbe7e6447 -> f9b7a76c9


Fixed Protobuf header dependency.

While the header files were being created correctly, the explicit
dependency in the `CUSTOM_COMMAND` did not exist. Though we depended on
`${H}`, the variable was empty as we forgot to set it.

Review: https://reviews.apache.org/r/63455/


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

Branch: refs/heads/master
Commit: f9b7a76c9c9d9723381ba18f68537cfba9f3b504
Parents: fbe7e64
Author: Andrew Schwartzmeyer <an...@schwartzmeyer.com>
Authored: Tue Oct 31 23:50:04 2017 +0100
Committer: Benjamin Bannier <bb...@apache.org>
Committed: Tue Oct 31 23:50:04 2017 +0100

----------------------------------------------------------------------
 src/cmake/MesosProtobuf.cmake | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/f9b7a76c/src/cmake/MesosProtobuf.cmake
----------------------------------------------------------------------
diff --git a/src/cmake/MesosProtobuf.cmake b/src/cmake/MesosProtobuf.cmake
index 533455e..ef90c15 100644
--- a/src/cmake/MesosProtobuf.cmake
+++ b/src/cmake/MesosProtobuf.cmake
@@ -73,6 +73,7 @@ function(PROTOC_GENERATE)
   endif ()
 
   set(CC ${CPP_OUT}/${PROTOC_TARGET}.pb.cc)
+  set(H ${CPP_OUT}/${PROTOC_TARGET}.pb.h)
 
   # Fully qualified path for the Java file.
   if (PROTOC_JAVA AND HAS_JAVA)