diff options
author | Rob Landley <rob@landley.net> | 2014-07-21 20:03:06 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-07-21 20:03:06 -0500 |
commit | 63352139e7b957c930a756563f7cf2a75c8955de (patch) | |
tree | a969d6480bcc78a4466d6ad5952571560b945ffe /scripts/single.sh | |
parent | 4fd07e0f6698cdb873aab0113369eb36c81853a9 (diff) | |
download | toybox-63352139e7b957c930a756563f7cf2a75c8955de.tar.gz |
Have single.sh enable I18N and FLOAT.
Diffstat (limited to 'scripts/single.sh')
-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 1c4ca564..e7e42edd 100755 --- a/scripts/single.sh +++ b/scripts/single.sh @@ -13,7 +13,7 @@ export KCONFIG_CONFIG=.singleconfig make allnoconfig > /dev/null && sed -i -e "s/\(CONFIG_TOYBOX\)=y/# \1 is not set/" \ - -e "s/# CONFIG_\($NAME\|${NAME}_[^ ]*\|TOYBOX_HELP[^ ]*\) is not set/CONFIG_\1=y/" \ + -e "s/# CONFIG_\($NAME\|${NAME}_[^ ]*\|TOYBOX_HELP[^ ]*\|TOYBOX_I18N\|TOYBOX_FLOAT\) is not set/CONFIG_\1=y/" \ "$KCONFIG_CONFIG" && make && mv toybox $PREFIX$1 |