[git commit] fix make_single_applets.sh

Denys Vlasenko vda.linux at googlemail.com
Thu Dec 6 13:10:10 UTC 2018


commit: https://git.busybox.net/busybox/commit/?id=52c210594cfc78c4d849550890c30a9185f36d9c
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 make_single_applets.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/make_single_applets.sh b/make_single_applets.sh
index aa1ace265..2075cb9a7 100755
--- a/make_single_applets.sh
+++ b/make_single_applets.sh
@@ -27,6 +27,8 @@ allno="$cfg"
 for app in $apps; do
 	allno="`echo "$allno" | sed "s/^CONFIG_${app}=y\$/# CONFIG_${app} is not set/"`"
 done
+# remove "busybox" as well
+allno="`echo "$allno" | sed "s/^CONFIG_BUSYBOX=y\$/# CONFIG_BUSYBOX is not set/"`"
 #echo "$allno" >.config_allno
 
 trap 'test -f .config.SV && mv .config.SV .config && touch .config' EXIT


More information about the busybox-cvs mailing list