diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-06-02 11:11:56 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-06-02 17:13:35 +0200 |
commit | 48758993b09a96f83c2bd190a5586421c90428e7 (patch) | |
tree | 28e4554cb26cc1294d06d6241b255d9e20190deb /package/glibc | |
parent | 8a2c6310e1e2764865ef684217130ed713d654e7 (diff) |
refactor CPU_ARCH/ARCH variables
After Joerg asked me about the difference between
ADK_TARGET_ARCH and ADK_TARGET_CPU_ARCH I recognized many duplication
of variables for this information.
These patch fixes this up. Use make cleandir && make menuconfig && make
Diffstat (limited to 'package/glibc')
-rw-r--r-- | package/glibc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/glibc/Makefile b/package/glibc/Makefile index a74493e23..ff7e1277d 100644 --- a/package/glibc/Makefile +++ b/package/glibc/Makefile @@ -42,7 +42,7 @@ endif glibc-dev-install: ${INSTALL_DIR} $(IDIR_GLIBC_DEV)/$(ADK_TARGET_LIBC_PATH) $(IDIR_GLIBC_DEV)/usr/lib # install linker script - cp ./files/libc.so.$(CPU_ARCH) $(IDIR_GLIBC_DEV)/usr/lib/libc.so + 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) $(SED) "s#@@ELFTARGET@@#elf32-tradbigmips#" $(IDIR_GLIBC_DEV)/usr/lib/libc.so |