aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2020-06-24 16:36:44 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2020-06-24 16:36:44 +0200
commitb02f8ca9098bedad00407fdaf3c3150fc81212ce (patch)
treef124cc389eaf4decbfe064b5fea4a8e784c7a13e
parent5663a17dabfcad885cc80f155ef84f7b843845cc (diff)
downloadbusybox-w32-b02f8ca9098bedad00407fdaf3c3150fc81212ce.tar.gz
busybox-w32-b02f8ca9098bedad00407fdaf3c3150fc81212ce.tar.bz2
busybox-w32-b02f8ca9098bedad00407fdaf3c3150fc81212ce.zip
make_single_applets.sh: switch off nologin deps option
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-xmake_single_applets.sh2
1 files changed, 2 insertions, 0 deletions
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
29done 29done
30# remove "busybox" as well 30# remove "busybox" as well
31allno="`echo "$allno" | sed "s/^CONFIG_BUSYBOX=y\$/# CONFIG_BUSYBOX is not set/"`" 31allno="`echo "$allno" | sed "s/^CONFIG_BUSYBOX=y\$/# CONFIG_BUSYBOX is not set/"`"
32# disable any CONFIG_script_DEPENDENCIES as well
33allno="`echo "$allno" | sed "s/^\(CONFIG_.*_DEPENDENCIES\)=y\$/# \1 is not set/"`"
32#echo "$allno" >.config_allno 34#echo "$allno" >.config_allno
33 35
34trap 'test -f .config.SV && mv .config.SV .config && touch .config' EXIT 36trap 'test -f .config.SV && mv .config.SV .config && touch .config' EXIT