diff options
author | Rob Landley <rob@landley.net> | 2015-05-03 20:15:52 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-05-03 20:15:52 -0500 |
commit | 8b6bff527b7684c009e3a817d993818b075c590c (patch) | |
tree | 10ece990e77e73c2ad59f64bb3698dba688545de /scripts | |
parent | abb5ae390342acf8eea2903033fb1d5879845b43 (diff) | |
download | toybox-8b6bff527b7684c009e3a817d993818b075c590c.tar.gz |
Yank smack from singleconfig.
Need to come up with a better solution to this, but the problem is that
single.sh's symbol enabling isn't dependency aware, and "silentoldconfig"
prompts. I suspect the better solution is "write a kconfig replacement".
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/single.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/single.sh b/scripts/single.sh index a1510479..1d075fd7 100755 --- a/scripts/single.sh +++ b/scripts/single.sh @@ -19,7 +19,7 @@ do exit 1 fi - DEPENDS="$(sed -n 's/^[ \t]*depends on //;T;s/[!][A-Z0-9_]*//g;s/ *&& */|/g;p' $TOYFILE | xargs | tr ' ' '|')" + DEPENDS="$(sed -n 's/^[ \t]*depends on //;T;s/[!][A-Z0-9_]*//g;s/ *&& */|/g;p' $TOYFILE | grep -v SMACK | xargs | tr ' ' '|')" NAME=$(echo $i | tr a-z- A-Z_) export KCONFIG_CONFIG=.singleconfig |