diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-04-17 05:31:54 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-04-17 05:31:54 +0200 |
commit | 66a6c153d5db95eb0f35861269a7f5459f387e55 (patch) | |
tree | b525180b82d1edd3ff72a84f4e9c70498115e1d9 /toolchain/eglibc | |
parent | c2fc0a3b9adbf657f7afce0f3f653c48dee84add (diff) |
add basic locale support to OpenADK
Diffstat (limited to 'toolchain/eglibc')
-rw-r--r-- | toolchain/eglibc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/eglibc/Makefile b/toolchain/eglibc/Makefile index 690261324..fe6f40275 100644 --- a/toolchain/eglibc/Makefile +++ b/toolchain/eglibc/Makefile @@ -14,7 +14,6 @@ TARGET_CFLAGS:= $(filter-out -fstack-protector,$(TARGET_CFLAGS)) EGLIBC_CONFOPTS:= --build=$(GNU_HOST_NAME) \ --host=$(REAL_GNU_TARGET_NAME) \ - --disable-nls \ --without-cvs \ --disable-profile \ --disable-debug \ @@ -22,7 +21,8 @@ EGLIBC_CONFOPTS:= --build=$(GNU_HOST_NAME) \ --without-gd \ --with-__thread \ --with-tls \ - --enable-add-ons + --enable-add-ons \ + $(NLS) EGLIBC_ENV:= PATH='${TARGET_PATH}' \ BUILD_CC=${CC_FOR_BUILD} \ |