diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-04 22:22:31 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-04 22:22:31 +0000 |
commit | 4373aca4722ac410e983728e5a961859d5ca7f4f (patch) | |
tree | 5d09d84fd36f4a340a6370bdd5d7e8cdfe5a5b2d /libc/misc/locale | |
parent | e050c1a78ae6d5edb1c0f6d23c72687dd1513a60 (diff) |
Correct XLOCALE enabled builds pointed out by nitinkg
Diffstat (limited to 'libc/misc/locale')
-rw-r--r-- | libc/misc/locale/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/misc/locale/Makefile.in b/libc/misc/locale/Makefile.in index 5f363ac65..9d0074521 100644 --- a/libc/misc/locale/Makefile.in +++ b/libc/misc/locale/Makefile.in @@ -8,17 +8,17 @@ MSRC:=locale.c MOBJ:=setlocale.o localeconv.o _locale_init.o nl_langinfo.o -MOBJx= +MOBJx:= ifeq ($(UCLIBC_HAS_LOCALE),y) MOBJ+=newlocale.o __locale_mbrtowc_l.o endif ifeq ($(UCLIBC_HAS_XLOCALE),y) -MOBJx+=nl_langinfo_l.o duplocale.o freelocale.o uselocale.o __curlocale.o +MOBJx:=nl_langinfo_l.o duplocale.o freelocale.o uselocale.o __curlocale.o endif -DATA= +DATA:= ifeq ($(UCLIBC_HAS_LOCALE),y) DATA:=locale_data.o endif @@ -30,8 +30,8 @@ MISC_LOCALE_OUT:=$(top_builddir)libc/misc/locale MISC_LOCALE_MSRC:=$(MISC_LOCALE_DIR)/$(MSRC) MISC_LOCALE_MOBJ:=$(patsubst %.o,$(MISC_LOCALE_OUT)/%.o,$(MOBJ)) -MISC_LOCALE_MOBJx=$(patsubst %.o,$(MISC_LOCALE_OUT)/%.o,$(MOBJx)) -MISC_LOCALE_DATA=$(patsubst %.o,$(MISC_LOCALE_OUT)/%.o,$(DATA)) +MISC_LOCALE_MOBJx:=$(patsubst %.o,$(MISC_LOCALE_OUT)/%.o,$(MOBJx)) +MISC_LOCALE_DATA:=$(patsubst %.o,$(MISC_LOCALE_OUT)/%.o,$(DATA)) MISC_LOCALE_DEF:=$(patsubst %,-DL_%,$(subst .o,,$(filter-out $(MISC_LOCALE_NO_MULTI),$(notdir $(MISC_LOCALE_MOBJ))))) |