Repository: mesos Updated Branches: refs/heads/1.2.x ef18cdac7 -> e56ba1778
Fixed a typo that detects if the platform is linux. Review: https://reviews.apache.org/r/59037/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/e56ba177 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/e56ba177 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/e56ba177 Branch: refs/heads/1.2.x Commit: e56ba1778725e7659e356cffd065a95a90ba0dc6 Parents: ef18cda Author: Chun-Hung Hsiao <[email protected]> Authored: Sat May 6 13:29:12 2017 -0700 Committer: Jie Yu <[email protected]> Committed: Sat May 6 13:30:22 2017 -0700 ---------------------------------------------------------------------- src/slave/containerizer/mesos/provisioner/provisioner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/e56ba177/src/slave/containerizer/mesos/provisioner/provisioner.cpp ---------------------------------------------------------------------- diff --git a/src/slave/containerizer/mesos/provisioner/provisioner.cpp b/src/slave/containerizer/mesos/provisioner/provisioner.cpp index 478ab09..32d41c1 100644 --- a/src/slave/containerizer/mesos/provisioner/provisioner.cpp +++ b/src/slave/containerizer/mesos/provisioner/provisioner.cpp @@ -218,7 +218,7 @@ Try<Owned<Provisioner>> Provisioner::create(const Flags& flags) // list is a priority list, meaning that we favor backends in the // front of the list. vector<string> backendNames = { -#ifdef __linux +#ifdef __linux__ OVERLAY_BACKEND, AUFS_BACKEND, #endif // __linux__
