Browse Source

make_single_applets.sh: switch off nologin deps option

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko 3 years ago
parent
commit
b02f8ca909
1 changed files with 2 additions and 0 deletions
  1. 2 0
      make_single_applets.sh

+ 2 - 0
make_single_applets.sh

@@ -29,6 +29,8 @@ for app in $apps; do
 done
 # remove "busybox" as well
 allno="`echo "$allno" | sed "s/^CONFIG_BUSYBOX=y\$/# CONFIG_BUSYBOX is not set/"`"
+# disable any CONFIG_script_DEPENDENCIES as well
+allno="`echo "$allno" | sed "s/^\(CONFIG_.*_DEPENDENCIES\)=y\$/# \1 is not set/"`"
 #echo "$allno" >.config_allno
 
 trap 'test -f .config.SV && mv .config.SV .config && touch .config' EXIT