diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-25 23:23:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-25 23:23:02 +0000 |
commit | 6e72ced7e75c9977390ce89c5edc07efde05fa7c (patch) | |
tree | 9ae8c6537a1e9be44b0d206ff0f80eb3b7dde96a /libc/misc/locale/Makefile | |
parent | 6395e85878894f3c0ad8a05b3aec66e514591959 (diff) |
Add in some more GNU compatible locale stuff. I only implement the
C locale of course. util-linux needs this stuff to compile...
Diffstat (limited to 'libc/misc/locale/Makefile')
-rw-r--r-- | libc/misc/locale/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/misc/locale/Makefile b/libc/misc/locale/Makefile index e90ada064..4f287f02c 100644 --- a/libc/misc/locale/Makefile +++ b/libc/misc/locale/Makefile @@ -24,6 +24,9 @@ TOPDIR=../../../ include $(TOPDIR)Rules.mak CSRC=locale.c localeconv.c +ifeq ($(strip $(HAS_LOCALE)),true) + CSRC+=nl_langinfo.c C-collate.c C-ctype.c C-messages.c C-monetary.c C-numeric.c C-time.c C_name.c +endif COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(COBJS) |