diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-12-04 22:40:20 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-12-04 22:40:20 +0000 |
commit | 8fc69335e9c6b53805a7bf883de7ac57b2f564b4 (patch) | |
tree | 11f78959e454d5121e351c45381e19d90a2c9238 /extra/locale/Makefile | |
parent | d8b1702462fdcf890c03046da97c56d8055a4295 (diff) | |
download | uClibc-alpine-8fc69335e9c6b53805a7bf883de7ac57b2f564b4.tar.bz2 uClibc-alpine-8fc69335e9c6b53805a7bf883de7ac57b2f564b4.tar.xz |
Change some variable names so we are more consistant with what
the linux kernel uses.
-Erik
Diffstat (limited to 'extra/locale/Makefile')
-rw-r--r-- | extra/locale/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extra/locale/Makefile b/extra/locale/Makefile index 3f6e7476e..deb60efb2 100644 --- a/extra/locale/Makefile +++ b/extra/locale/Makefile @@ -26,14 +26,14 @@ codesets.txt: fi; gen_wc8bit: gen_wc8bit.c - $(NATIVE_CC) $(NATIVE_CFLAGS) $(NATIVE_LDFLAGS) $(CFLAGS_wc8bit) $^ -o $@ + $(HOSTCC) $(HOSTCFLAGS) $(NATIVE_LDFLAGS) $(CFLAGS_wc8bit) $^ -o $@ #gen_wc8bit.c -o gen_wc8bit c8tables.h: gen_wc8bit codesets.txt ./gen_wc8bit `cat codesets.txt` gen_wctype: gen_wctype.c - $(NATIVE_CC) $(NATIVE_CFLAGS) $(NATIVE_LDFLAGS) $^ -o $@ + $(HOSTCC) $(HOSTCFLAGS) $(NATIVE_LDFLAGS) $^ -o $@ #gen_wctype.c -o gen_wctype # Warning! Beware tr_TR toupper/tolower exceptions! @@ -42,7 +42,7 @@ wctables.h: gen_wctype ./gen_wctype en_US gen_locale: gen_locale.c c8tables.h - $(NATIVE_CC) $(NATIVE_CFLAGS) $(NATIVE_LDFLAGS) gen_locale.c -o $@ + $(HOSTCC) $(HOSTCFLAGS) $(NATIVE_LDFLAGS) gen_locale.c -o $@ #gen_locale.c -o gen_locale # TODO: if no wide char support, we should auto-disable all UTF-8 locales @@ -67,7 +67,7 @@ locales.txt: false; \ fi; -# ifneq ($(TARGET_ARCH),$(NATIVE_ARCH)) +# ifneq ($(TARGET_ARCH),$(HOST_ARCH)) # locale.mmap: gen_mmap # echo Your locale.mmap file is either missing or out of date. @@ -90,7 +90,7 @@ locales.txt: # ./lmmtolso gen_ldc: gen_ldc.c c8tables.h wctables.h locale_tables.h - $(NATIVE_CC) $(NATIVE_CFLAGS) $(NATIVE_LDFLAGS) $(CFLAGS_mmap) gen_ldc.c -o $@ + $(HOSTCC) $(HOSTCFLAGS) $(NATIVE_LDFLAGS) $(CFLAGS_mmap) gen_ldc.c -o $@ #gen_ldc.c -o gen_ldc locale_data.c: gen_ldc |