diff options
author | Rob Landley <rob@landley.net> | 2014-08-02 19:49:10 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-08-02 19:49:10 -0500 |
commit | 825d7148d057a012fd8df0851a768a0d438f6c61 (patch) | |
tree | ca88db7ea2f41088b3076bca37f5b41bf2918050 /scripts | |
parent | e686dcc30ba4505f813b9f5ccfa8ed9cf8644d3f (diff) | |
download | toybox-825d7148d057a012fd8df0851a768a0d438f6c61.tar.gz |
Add --help support to single.sh builds.
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 a07770ba..7d3b4576 100755 --- a/scripts/single.sh +++ b/scripts/single.sh @@ -15,7 +15,7 @@ USET="is not set" make allnoconfig > /dev/null && sed -i -e "s/\(CONFIG_TOYBOX\)=y/# \1 $USET/" \ -e "s/# \(CONFIG_$NAME\) $USET/\1=y/" \ - -e "s/# \(CONFIG_TOYBOX_HELP\) $USET/\1=y/" \ + -e "s/# \(CONFIG_TOYBOX_HELP.*\) $USET/\1=y/" \ -e "s/# \(CONFIG_TOYBOX_I18N\) $USET/\1=y/" \ -e "s/# \(CONFIG_TOYBOX_FLOAT\) $USET/\1=y/" \ "$KCONFIG_CONFIG" && |