diff options
Diffstat (limited to 'script/mkconfig')
-rwxr-xr-x | script/mkconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/mkconfig b/script/mkconfig index 14daf4e..a3637ad 100755 --- a/script/mkconfig +++ b/script/mkconfig @@ -69,7 +69,7 @@ bool "Application" EOF for app in $(ls -1 src/app); do - if [ -e "src/app/${app}/no-kconfig" ]; then + if [ ! -e "src/app/${app}/Kconfig" ]; then continue fi echo config app_${app} | tr - _ @@ -86,7 +86,7 @@ echo endchoice echo for app in $(ls -1 src/app); do - if [ -e "src/app/${app}/no-kconfig" ]; then + if [ ! -e "src/app/${app}/Kconfig" ]; then continue fi echo config app |