projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5663a17
)
make_single_applets.sh: switch off nologin deps option
author
Denys Vlasenko
<vda.linux@googlemail.com>
Wed, 24 Jun 2020 14:36:44 +0000
(16:36 +0200)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Wed, 24 Jun 2020 14:36:44 +0000
(16:36 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
make_single_applets.sh
patch
|
blob
|
history
diff --git
a/make_single_applets.sh
b/make_single_applets.sh
index a37168cdfd45339afff87f7ee38f05354fa34d49..7df53397eb415a7cfba76bd4ebe0d1293192d895 100755
(executable)
--- 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