diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2019-09-07 20:27:07 -0700 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-09-07 22:27:07 -0500 |
commit | 331e4e32befc3f2911b237b822b38413448851a6 (patch) | |
tree | 39c949d5c3c0fbcb020e6ce234cafe86dcce80d4 /var | |
parent | ac7a17754f74a324836bbb58bb1b56f4cc7fcd1f (diff) | |
download | spack-331e4e32befc3f2911b237b822b38413448851a6.tar.gz spack-331e4e32befc3f2911b237b822b38413448851a6.tar.bz2 spack-331e4e32befc3f2911b237b822b38413448851a6.tar.xz spack-331e4e32befc3f2911b237b822b38413448851a6.zip |
ncurses: improve build time (#12621)
Apply configure options to skip manpage generation
and test builds for both wide and non-wide builts.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/ncurses/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/ncurses/package.py b/var/spack/repos/builtin/packages/ncurses/package.py index a68021f078..4915fcb092 100644 --- a/var/spack/repos/builtin/packages/ncurses/package.py +++ b/var/spack/repos/builtin/packages/ncurses/package.py @@ -56,7 +56,9 @@ class Ncurses(AutotoolsPackage): '--without-manpages', '--without-tests'] - wide_opts = ['--enable-widec'] + wide_opts = ['--enable-widec', + '--without-manpages', + '--without-tests'] if '+symlinks' in self.spec: opts.append('--enable-symlinks') |