You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jo...@apache.org on 2017/03/09 21:30:35 UTC

[3/5] mesos git commit: CMake: Normalized some function capitalization.

CMake: Normalized some function capitalization.

CMake isn't case sensitive about many of its functions,
but our codebase generally uses lowercase when calling
built-in CMake functions.


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

Branch: refs/heads/master
Commit: 5d1df5d98e9faea542ca95f51fe1a3ccc2da6457
Parents: eb08f08
Author: Joseph Wu <jo...@apache.org>
Authored: Thu Mar 2 14:03:50 2017 -0800
Committer: Joseph Wu <jo...@apache.org>
Committed: Thu Mar 9 11:14:29 2017 -0800

----------------------------------------------------------------------
 CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/5d1df5d9/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8e492cf..0d1e17b 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -127,7 +127,7 @@ option(CPACK_BINARY_TGZ          "Enable to build TGZ packages"             OFF)
 option(CPACK_BINARY_TXZ          "Enable to build TXZ packages"             OFF)
 
 # Output a gzip'd tarball for the `package_source` target.
-SET(CPACK_SOURCE_TGZ ON)
+set(CPACK_SOURCE_TGZ ON)
 
 # By default, other forms of source packages are disabled.
 option(CPACK_SOURCE_TBZ2 "Enable to build TBZ2 source packages" OFF)
@@ -135,4 +135,4 @@ option(CPACK_SOURCE_TXZ  "Enable to build TXZ source packages"  OFF)
 option(CPACK_SOURCE_TZ   "Enable to build TZ source packages"   OFF)
 option(CPACK_SOURCE_ZIP  "Enable to build ZIP source packages"  OFF)
 
-INCLUDE(CPack)
+include(CPack)