From 48758993b09a96f83c2bd190a5586421c90428e7 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 2 Jun 2014 11:11:56 +0200 Subject: 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 --- package/libnet/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'package/libnet/Makefile') diff --git a/package/libnet/Makefile b/package/libnet/Makefile index 72bbd2800..45c11c02f 100644 --- a/package/libnet/Makefile +++ b/package/libnet/Makefile @@ -23,13 +23,13 @@ $(eval $(call PKG_template,LIBNET,libnet,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEP AUTOTOOL_STYLE:= autoreconf ENDIAN:=lil -ifeq (${CPU_ARCH},mips) +ifeq (${ADK_TARGET_CPU_ARCH},mips) ENDIAN:=big endif -ifeq (${CPU_ARCH},mips64) +ifeq (${ADK_TARGET_CPU_ARCH},mips64) ENDIAN:=big endif -ifeq (${CPU_ARCH},ppc) +ifeq (${ADK_TARGET_CPU_ARCH},ppc) ENDIAN:=big endif -- cgit v1.2.3