ncurses: speed up host build

Disable C++ and Ada bindings in host-ncurses, since those are not
needed. Save 9 seconds of build time on my laptop.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Thomas Petazzoni 2013-02-24 07:27:51 +00:00 committed by Peter Korsgaard
parent 5d8acdc937
commit bfbfc93cc7
1 changed files with 4 additions and 1 deletions

View File

@ -117,7 +117,10 @@ endef
HOST_NCURSES_CONF_OPT = \
--without-shared --without-gpm \
--without-manpages
--without-manpages \
--without-cxx \
--without-cxx-binding \
--without-ada
$(eval $(autotools-package))
$(eval $(host-autotools-package))