You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ti...@apache.org on 2016/03/21 14:32:26 UTC

mesos git commit: Used correct path to authorization protobuf file.

Repository: mesos
Updated Branches:
  refs/heads/master 9aeb43e2c -> 1d39e0d39


Used correct path to authorization protobuf file.

This fixes a wrong path introduced in 482dc14 which broke mesos' cmake
build.

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


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

Branch: refs/heads/master
Commit: 1d39e0d39d598b3fbd6f3ff6559c5c62c45113c8
Parents: 9aeb43e
Author: Benjamin Bannier <be...@mesosphere.io>
Authored: Mon Mar 21 14:24:17 2016 +0100
Committer: Till Toenshoff <to...@me.com>
Committed: Mon Mar 21 14:24:17 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/1d39e0d3/src/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 0517dd1..3947329 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -24,7 +24,7 @@ PROTOC_TO_INCLUDE_DIR(V1_MESOS         mesos/v1/mesos)
 PROTOC_TO_INCLUDE_DIR(ACLS             mesos/authorizer/acls)
 PROTOC_TO_INCLUDE_DIR(APPC_SPEC        mesos/appc/spec)
 PROTOC_TO_INCLUDE_DIR(AUTHENTICATION   mesos/authentication/authentication)
-PROTOC_TO_INCLUDE_DIR(AUTHORIZATION    mesos/authorizer/authorization)
+PROTOC_TO_INCLUDE_DIR(AUTHORIZATION    mesos/authorizer/authorizer)
 PROTOC_TO_INCLUDE_DIR(CONTAINERIZER    mesos/containerizer/containerizer)
 PROTOC_TO_INCLUDE_DIR(DOCKER_SPEC      mesos/docker/spec)
 PROTOC_TO_INCLUDE_DIR(DOCKER_V1        mesos/docker/v1)