diff options
author | Elizabeth Fischer <rpf2116@columbia.edu> | 2016-11-12 23:26:40 -0500 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-11-12 21:26:40 -0700 |
commit | 8c0c3263e282d95517f251b5c6e357f27e26d179 (patch) | |
tree | 84634cc744c10c0528dfe44e3d6c15236d32e7f8 | |
parent | a5934fcaa64f69453a42b9d30cee95f754e88a84 (diff) | |
download | spack-8c0c3263e282d95517f251b5c6e357f27e26d179.tar.gz spack-8c0c3263e282d95517f251b5c6e357f27e26d179.tar.bz2 spack-8c0c3263e282d95517f251b5c6e357f27e26d179.tar.xz spack-8c0c3263e282d95517f251b5c6e357f27e26d179.zip |
Simplify the CMake build to make it more robust. (#2325)
* Simplify the CMake build to make it more robust.
* ncurses on by default.
-rw-r--r-- | var/spack/repos/builtin/packages/cmake/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/cmake/package.py b/var/spack/repos/builtin/packages/cmake/package.py index 83a68fda07..93bdb72050 100644 --- a/var/spack/repos/builtin/packages/cmake/package.py +++ b/var/spack/repos/builtin/packages/cmake/package.py @@ -42,7 +42,7 @@ class Cmake(Package): version('3.0.2', 'db4c687a31444a929d2fdc36c4dfb95f') version('2.8.10.2', '097278785da7182ec0aea8769d06860c') - variant('ownlibs', default=False, description='Use CMake-provided third-party libraries') + variant('ownlibs', default=True, description='Use CMake-provided third-party libraries') variant('qt', default=False, description='Enables the build of cmake-gui') variant('doc', default=False, description='Enables the generation of html and man page documentation') variant('openssl', default=True, description="Enables CMake's OpenSSL features") |