diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-01-19 00:03:52 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-01-19 00:03:52 +0000 |
commit | 734e33097a52b600ae08cced4a8fb1d9735dac33 (patch) | |
tree | d9ae7a3aa38a5690512742cf07b9415a77dc7f17 /scripts | |
parent | 8270d590f1e3dbcb49591a551a4d9bda4b2d84a3 (diff) |
[scripts] ext-toolchain.sh: CONFIG_NLS -> CONFIG_BUILD_NLS
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29782 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ext-toolchain.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ext-toolchain.sh b/scripts/ext-toolchain.sh index 616b54f21..257e0d8e8 100755 --- a/scripts/ext-toolchain.sh +++ b/scripts/ext-toolchain.sh @@ -308,9 +308,9 @@ print_config() { fi if test_feature "locale"; then - echo "CONFIG_NLS=y" >> "$config" + echo "CONFIG_BUILD_NLS=y" >> "$config" else - echo "# CONFIG_NLS is not set" >> "$config" + echo "# CONFIG_BUILD_NLS is not set" >> "$config" fi echo "CONFIG_DEVEL=y" >> "$config" |