From: Thomas Petazzoni Date: Wed, 3 Dec 2014 21:41:33 +0000 (+0100) Subject: ncurses: speed up host build by disabling static library building X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f8639c79d8f8af4ac01176e64d69062ac4644561;p=buildroot.git ncurses: speed up host build by disabling static library building For the host variant of packages, we normally only build the shared libraries. However, ncurses uses non-standard options to select between shared/static and therefore the host variant was building both of them, even though the static libraries were unused. By passing --without-normal, we disable the build of static libraries. It saves a bit of disk space, and on my laptop, host-ncurses takes 26 seconds to build instead of 40 seconds. Signed-off-by: Thomas Petazzoni Acked-by: "Yann E. MORIN" --- diff --git a/package/ncurses/ncurses.mk b/package/ncurses/ncurses.mk index 1ce3818337..645c25c1bc 100644 --- a/package/ncurses/ncurses.mk +++ b/package/ncurses/ncurses.mk @@ -145,7 +145,8 @@ HOST_NCURSES_CONF_OPTS = \ --without-manpages \ --without-cxx \ --without-cxx-binding \ - --without-ada + --without-ada \ + --without-normal $(eval $(autotools-package)) $(eval $(host-autotools-package))