diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-08-25 14:49:17 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-08-25 14:49:17 +0200 |
commit | a99b1bb24fa09ecbdcde0364514d3690caaadcc8 (patch) | |
tree | 7abf0c1fff6a0b871a2f5a12200d32a06c2c9d35 /toolchain/uClibc/uClibc-0.9.31-fix-error-locale-utf-8.patch | |
parent | 2c31d745ac08e620d143cc266e2b7113754a8787 (diff) | |
parent | 311e0a6fc49a2135a3a5e1e63fe8b77c184cb8c9 (diff) | |
download | buildroot-novena-a99b1bb24fa09ecbdcde0364514d3690caaadcc8.tar.gz buildroot-novena-a99b1bb24fa09ecbdcde0364514d3690caaadcc8.zip |
Merge branch 'for-2010.08' of git://git.busybox.net/~tpetazzoni/git/buildroot
Diffstat (limited to 'toolchain/uClibc/uClibc-0.9.31-fix-error-locale-utf-8.patch')
-rw-r--r-- | toolchain/uClibc/uClibc-0.9.31-fix-error-locale-utf-8.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/toolchain/uClibc/uClibc-0.9.31-fix-error-locale-utf-8.patch b/toolchain/uClibc/uClibc-0.9.31-fix-error-locale-utf-8.patch new file mode 100644 index 000000000..1305add50 --- /dev/null +++ b/toolchain/uClibc/uClibc-0.9.31-fix-error-locale-utf-8.patch @@ -0,0 +1,17 @@ +--- + extra/locale/gen_wc8bit.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: uClibc-0.9.31/extra/locale/gen_wc8bit.c +=================================================================== +--- uClibc-0.9.31.orig/extra/locale/gen_wc8bit.c ++++ uClibc-0.9.31/extra/locale/gen_wc8bit.c +@@ -120,7 +120,7 @@ + } + + locale_failure: +- printf("could not find a UTF8 locale ... please enable en_US.UTF-8\n"); ++ fprintf(stderr, "could not find a UTF8 locale ... please enable en_US.UTF-8\n"); + return EXIT_FAILURE; + locale_success: + pclose(fp); |