summaryrefslogtreecommitdiff
path: root/Modules/CPack.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-11-01 15:36:26 -0400
committerBrad King <brad.king@kitware.com>2013-11-01 15:41:16 -0400
commit7947981c2be1fe2eb71b09290a3f0e57d572a3f0 (patch)
tree6e93113782e1590cc4fdf740f4d323924b25cc53 /Modules/CPack.cmake
parent20bb60917125ee69e5ce0131934f214be15fdcb6 (diff)
downloadcmake-7947981c2be1fe2eb71b09290a3f0e57d572a3f0.tar.gz
CPack: Disable OS X PackageMaker by default (#13662)
As mentioned in commit 4693cf84 (Xcode: Detect new default locations of Xcode 4.3 bits and pieces) PackageMaker was split out of Xcode 4.3 and above into a separate Auxiliary tools package. Since Xcode 5.0 or so, Apple no longer distributes PackageMaker as part of the available development tools so it can only be obtained from old packages. Disable the CPACK_BINARY_PACKAGEMAKER option by default as is the case for most other tool-dependent generators.
Diffstat (limited to 'Modules/CPack.cmake')
-rw-r--r--Modules/CPack.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CPack.cmake b/Modules/CPack.cmake
index da6b2e0385..fba5c47a68 100644
--- a/Modules/CPack.cmake
+++ b/Modules/CPack.cmake
@@ -416,7 +416,7 @@ if(NOT CPACK_GENERATOR)
if(APPLE)
option(CPACK_BINARY_BUNDLE "Enable to build OSX bundles" OFF)
option(CPACK_BINARY_DRAGNDROP "Enable to build OSX Drag And Drop package" OFF)
- option(CPACK_BINARY_PACKAGEMAKER "Enable to build PackageMaker packages" ON)
+ option(CPACK_BINARY_PACKAGEMAKER "Enable to build PackageMaker packages" OFF)
option(CPACK_BINARY_OSXX11 "Enable to build OSX X11 packages" OFF)
else()
option(CPACK_BINARY_TZ "Enable to build TZ packages" ON)