You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gn...@apache.org on 2020/04/29 17:47:03 UTC

[incubator-nuttx-apps] branch master updated: Remove the unnecessary BUILD_FLAT dependence from Kconfig

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 547bad9  Remove the unnecessary BUILD_FLAT dependence from Kconfig
547bad9 is described below

commit 547bad9e2a3f631f8f08fed7b97507dc8f8067f3
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Wed Apr 29 22:40:56 2020 +0800

    Remove the unnecessary BUILD_FLAT dependence from Kconfig
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 examples/timer/Kconfig  | 2 +-
 system/readline/Kconfig | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/timer/Kconfig b/examples/timer/Kconfig
index 6db7e7d..bc61b7d 100644
--- a/examples/timer/Kconfig
+++ b/examples/timer/Kconfig
@@ -6,7 +6,7 @@
 config EXAMPLES_TIMER
 	tristate "Timer example"
 	default n
-	depends on TIMER && BUILD_FLAT
+	depends on TIMER
 	---help---
 		Enable the timer example
 
diff --git a/system/readline/Kconfig b/system/readline/Kconfig
index d2d4bf5..5a9411f 100644
--- a/system/readline/Kconfig
+++ b/system/readline/Kconfig
@@ -29,7 +29,7 @@ if READLINE_ECHO
 config READLINE_TABCOMPLETION
 	bool "Tab completion"
 	default n
-	depends on (BUILD_FLAT && BUILTIN) || READLINE_HAVE_EXTMATCH
+	depends on BUILTIN || READLINE_HAVE_EXTMATCH
 	---help---
 		Build in support for Unix-style tab completion.  This feature was
 		originally provided by Nghia Ho.