From: Denys Vlasenko Date: Wed, 24 Jun 2020 14:36:44 +0000 (+0200) Subject: make_single_applets.sh: switch off nologin deps option X-Git-Tag: 1_32_0~2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b02f8ca9098bedad00407fdaf3c3150fc81212ce;p=oweals%2Fbusybox.git make_single_applets.sh: switch off nologin deps option Signed-off-by: Denys Vlasenko --- diff --git a/make_single_applets.sh b/make_single_applets.sh index a37168cdf..7df53397e 100755 --- a/make_single_applets.sh +++ b/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