diff options
author | Rob Landley <rob@landley.net> | 2015-02-14 14:54:36 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-02-14 14:54:36 -0600 |
commit | 55fc1603b4162786565106e703da14106295171e (patch) | |
tree | 18e799f4bd5ba9916e7beb27cb689059d12136ed /scripts | |
parent | 7fcd90b39ce63f282d5498c06f78118bc03acf18 (diff) | |
download | toybox-55fc1603b4162786565106e703da14106295171e.tar.gz |
Fix --help for 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 ce8695c0..a1510479 100755 --- a/scripts/single.sh +++ b/scripts/single.sh @@ -26,7 +26,7 @@ do make allnoconfig > /dev/null && sed -ri -e "s/CONFIG_TOYBOX=y/# CONFIG_TOYBOX is not set/;t" \ - -e "s/# (CONFIG_(TOYBOX(|_HELP|_I18N|_FLOAT)|$NAME|${NAME}_.*${DEPENDS:+|$DEPENDS})) is not set/\1=y/" \ + -e "s/# (CONFIG_(TOYBOX(|_HELP.*|_I18N|_FLOAT)|$NAME|${NAME}_.*${DEPENDS:+|$DEPENDS})) is not set/\1=y/" \ "$KCONFIG_CONFIG" && make && mv toybox $PREFIX$i || exit 1 |