From: Thomas Petazzoni Date: Sat, 9 Mar 2013 04:03:00 +0000 (+0000) Subject: icu: speed up host build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5f6baf89d487c6aaf5fb3684c48032a3460e2b45;p=buildroot.git icu: speed up host build The host build of icu doesn't need to build everything, so we can add a few more --disable- options to save a little bit of build time. On a fast build server, this bring the host icu build from 2m28.517s to 2m5.192s. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/package/icu/icu.mk b/package/icu/icu.mk index 5a884968fd..7658589e4e 100644 --- a/package/icu/icu.mk +++ b/package/icu/icu.mk @@ -15,7 +15,12 @@ ICU_INSTALL_STAGING = YES ICU_CONFIG_SCRIPTS = icu-config ICU_CONF_OPT = --with-cross-build=$(HOST_ICU_DIR)/source --disable-samples \ --disable-tests -HOST_ICU_CONF_OPT = --disable-samples --disable-tests +HOST_ICU_CONF_OPT = \ + --disable-samples \ + --disable-tests \ + --disable-extras \ + --disable-icuio \ + --disable-layout ICU_MAKE = $(MAKE1) ICU_SUBDIR = source HOST_ICU_SUBDIR = source