diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-02-24 07:27:51 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-03-04 21:19:05 +0100 |
commit | bfbfc93cc7b7a9e2cf54736561a41db67ac8e67a (patch) | |
tree | f31f8a5014ccf60cdbb4c3e7af76303143e0ed35 /package | |
parent | 5d8acdc937c67f2309017fbe783f8fb75f681c65 (diff) | |
download | buildroot-novena-bfbfc93cc7b7a9e2cf54736561a41db67ac8e67a.tar.gz buildroot-novena-bfbfc93cc7b7a9e2cf54736561a41db67ac8e67a.zip |
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>
Diffstat (limited to 'package')
-rw-r--r-- | package/ncurses/ncurses.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/ncurses/ncurses.mk b/package/ncurses/ncurses.mk index e77a0f1af..c01dfbc36 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)) |