From: Thomas Petazzoni Date: Sun, 24 Feb 2013 07:27:51 +0000 (+0000) Subject: ncurses: speed up host build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bfbfc93cc7b7a9e2cf54736561a41db67ac8e67a;p=buildroot.git 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 Signed-off-by: Peter Korsgaard --- diff --git a/package/ncurses/ncurses.mk b/package/ncurses/ncurses.mk index e77a0f1afb..c01dfbc36b 100644 --- a/package/ncurses/ncurses.mk +++ b/package/ncurses/ncurses.mk @@ -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))