fix make_single_applets.sh

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2018-12-06 14:10:10 +01:00
parent b23ac51d0c
commit 52c210594c

View File

@ -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