summaryrefslogtreecommitdiff
path: root/package/glibc/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2015-03-03 06:38:16 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2015-03-03 06:38:16 +0100
commit1b8b4b1839bb012877b8e98cc8932b4cf0349440 (patch)
tree997ad72134f2bf1dee6d638c3798a648f6d09734 /package/glibc/Makefile
parent6ec63e7445fec93fba027a70083b16cd470e5a95 (diff)
convert to upper case symbols, remove lower case ADK_big/ADK_little
Diffstat (limited to 'package/glibc/Makefile')
-rw-r--r--package/glibc/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/glibc/Makefile b/package/glibc/Makefile
index 6b15d1219..4d5190930 100644
--- a/package/glibc/Makefile
+++ b/package/glibc/Makefile
@@ -64,21 +64,21 @@ glibc-dev-install:
# install linker script
cp ./files/libc.so.$(ADK_TARGET_CPU_ARCH) $(IDIR_GLIBC_DEV)/usr/lib/libc.so
ifeq ($(ADK_TARGET_ABI_O32),y)
-ifeq ($(ADK_big),y)
+ifeq ($(ADK_TARGET_BIG_ENDIAN),y)
$(SED) "s#@@ELFTARGET@@#elf32-tradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so
else
$(SED) "s#@@ELFTARGET@@#elf32-tradlittlemips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so
endif
endif
ifeq ($(ADK_TARGET_ABI_N32),y)
-ifeq ($(ADK_big),y)
+ifeq ($(ADK_TARGET_BIG_ENDIAN),y)
$(SED) "s#@@ELFTARGET@@#elf32-ntradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so
else
$(SED) "s#@@ELFTARGET@@#elf32-ntradlittlemips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so
endif
endif
ifeq ($(ADK_TARGET_ABI_N64),y)
-ifeq ($(ADK_big),y)
+ifeq ($(ADK_TARGET_BIG_ENDIAN),y)
$(SED) "s#@@ELFTARGET@@#elf64-tradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so
else
$(SED) "s#@@ELFTARGET@@#elf64-tradlittlemips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so