summaryrefslogtreecommitdiff
path: root/libc/misc/ctype/Makefile.in
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-11-04 22:22:31 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-11-04 22:22:31 +0000
commit4373aca4722ac410e983728e5a961859d5ca7f4f (patch)
tree5d09d84fd36f4a340a6370bdd5d7e8cdfe5a5b2d /libc/misc/ctype/Makefile.in
parente050c1a78ae6d5edb1c0f6d23c72687dd1513a60 (diff)
Correct XLOCALE enabled builds pointed out by nitinkg
Diffstat (limited to 'libc/misc/ctype/Makefile.in')
-rw-r--r--libc/misc/ctype/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/misc/ctype/Makefile.in b/libc/misc/ctype/Makefile.in
index 0999d8334..0e194cbff 100644
--- a/libc/misc/ctype/Makefile.in
+++ b/libc/misc/ctype/Makefile.in
@@ -18,7 +18,7 @@ MOBJ+= __C_ctype_b.o __C_ctype_tolower.o __C_ctype_toupper.o \
__ctype_assert.o isctype.o
endif
-MOBJx= isalnum_l.o isalpha_l.o isascii_l.o iscntrl_l.o isdigit_l.o \
+MOBJx:= isalnum_l.o isalpha_l.o isascii_l.o iscntrl_l.o isdigit_l.o \
isgraph_l.o islower_l.o isprint_l.o ispunct_l.o isspace_l.o \
isupper_l.o isxdigit_l.o toascii_l.o tolower_l.o toupper_l.o \
isblank_l.o # isxlower_l.o isxupper_l.o
@@ -28,7 +28,7 @@ MISC_CTYPE_OUT:=$(top_builddir)libc/misc/ctype
MISC_CTYPE_MSRC:=$(MISC_CTYPE_DIR)/$(MSRC)
MISC_CTYPE_MOBJ:=$(patsubst %.o,$(MISC_CTYPE_OUT)/%.o,$(MOBJ))
-MISC_CTYPE_MOBJx=$(patsubst %.o,$(MISC_CTYPE_OUT)/%.o,$(MOBJx))
+MISC_CTYPE_MOBJx:=$(patsubst %.o,$(MISC_CTYPE_OUT)/%.o,$(MOBJx))
MISC_CTYPE_DEF:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(MISC_CTYPE_MOBJ))))