diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-06 14:10:10 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-06 14:10:10 +0100 |
commit | 52c210594cfc78c4d849550890c30a9185f36d9c (patch) | |
tree | 916161e0c6f4134378fe8f18c4504555d9f26f6b /make_single_applets.sh | |
parent | b23ac51d0cfc04226fa8fcc90edd00808614cb32 (diff) | |
download | busybox-w32-52c210594cfc78c4d849550890c30a9185f36d9c.tar.gz busybox-w32-52c210594cfc78c4d849550890c30a9185f36d9c.tar.bz2 busybox-w32-52c210594cfc78c4d849550890c30a9185f36d9c.zip |
fix make_single_applets.sh
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'make_single_applets.sh')
-rwxr-xr-x | make_single_applets.sh | 2 |
1 files changed, 2 insertions, 0 deletions
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" | |||
27 | for app in $apps; do | 27 | for app in $apps; do |
28 | allno="`echo "$allno" | sed "s/^CONFIG_${app}=y\$/# CONFIG_${app} is not set/"`" | 28 | allno="`echo "$allno" | sed "s/^CONFIG_${app}=y\$/# CONFIG_${app} is not set/"`" |
29 | done | 29 | done |
30 | # remove "busybox" as well | ||
31 | allno="`echo "$allno" | sed "s/^CONFIG_BUSYBOX=y\$/# CONFIG_BUSYBOX is not set/"`" | ||
30 | #echo "$allno" >.config_allno | 32 | #echo "$allno" >.config_allno |
31 | 33 | ||
32 | trap 'test -f .config.SV && mv .config.SV .config && touch .config' EXIT | 34 | trap 'test -f .config.SV && mv .config.SV .config && touch .config' EXIT |