You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/04/09 05:20:55 UTC

[incubator-nuttx-testing] 01/04: cibuild.sh: Disable more kconfig features not used for the CI

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git

commit c59272289d8f6a1611eeba18638df08b52e4b517
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Wed Apr 1 23:02:49 2020 +0900

    cibuild.sh: Disable more kconfig features not used for the CI
---
 cibuild.sh | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/cibuild.sh b/cibuild.sh
index 1742405..7af00df 100755
--- a/cibuild.sh
+++ b/cibuild.sh
@@ -70,9 +70,12 @@ function gperf {
 function kconfig-frontends {
   add_path $prebuilt/kconfig-frontends/bin
 
-  if [ ! -f "$prebuilt/kconfig-frontends/bin/kconfig-mconf" ]; then
+  if [ ! -f "$prebuilt/kconfig-frontends/bin/kconfig-conf" ]; then
     cd $tools/kconfig-frontends
-    ./configure --prefix=$prebuilt/kconfig-frontends --enable-mconf --disable-gconf --disable-qconf --enable-static
+    ./configure --prefix=$prebuilt/kconfig-frontends \
+      --disable-kconfig --disable-nconf --disable-qconf \
+      --disable-gconf --disable-mconf --disable-static \
+      --disable-shared --disable-L10n --disable-utils
     make install
     cd $tools; git clean -xfd
   fi