ncurses: improve build time (#12621)

Apply configure options to skip manpage generation
and test builds for both wide and non-wide builts.
This commit is contained in:
Axel Huebl 2019-09-07 20:27:07 -07:00 committed by Adam J. Stewart
parent ac7a17754f
commit 331e4e32be

View File

@ -56,7 +56,9 @@ def configure(self, spec, prefix):
'--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')