Repository: mesos Updated Branches: refs/heads/1.3.x 149380cc0 -> bbdd2077f
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/bbdd2077 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/bbdd2077 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/bbdd2077 Branch: refs/heads/1.3.x Commit: bbdd2077ff09002ef0af6f9b94900fe386613f0c Parents: 149380c 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:40 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/bbdd2077/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 be45fc5..6509ee4 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__
