You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2016/04/29 15:35:40 UTC

mesos git commit: Fixed the CMake build.

Repository: mesos
Updated Branches:
  refs/heads/master c9dc0eb87 -> 78f6101cc


Fixed the CMake build.

CMake builds failed to compile under Linux because of a missing
include. This was due to a typo in 'src/CMakeLists.txt', resulting in
'state.pb.h' not being created.

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


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

Branch: refs/heads/master
Commit: 78f6101cca76932d467db576ea7f7a9e7e8378a7
Parents: c9dc0eb
Author: Jan Schlicht <ja...@mesosphere.io>
Authored: Fri Apr 29 15:35:15 2016 +0200
Committer: Bernd Mathiske <be...@mesosphere.io>
Committed: Fri Apr 29 15:35:15 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/78f6101c/src/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index f991743..e0c538d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -70,7 +70,7 @@ set(MESOS_PROTOBUF_SRC
   ${INTERNAL_STATE_PROTO_CC}
   ${ISOLATOR_PROTO_CC}
   ${ISOLATOR_CNI_SPEC_PROTO_CC}
-  ${ISOLATOR_DOCKER_VOLUME_STATE_CC}
+  ${ISOLATOR_DOCKER_VOLUME_STATE_PROTO_CC}
   ${MAINTENANCE_PROTO_CC}
   ${MESOS_PROTO_CC}
   ${MODULE_PROTO_CC}