From: Manuel Novoa III Date: Mon, 24 Nov 2003 23:23:16 +0000 (-0000) Subject: Use ARCH... not TARGET_ARCH in the mipsel test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce6884732d2a4b644e556922737cb1274008f635;p=buildroot.git Use ARCH... not TARGET_ARCH in the mipsel test. --- diff --git a/make/kernel-headers.mk b/make/kernel-headers.mk index dbed03c272..06ceb2be76 100644 --- a/make/kernel-headers.mk +++ b/make/kernel-headers.mk @@ -29,7 +29,7 @@ $(LINUX_DIR)/.configured: $(LINUX_DIR)/.unpacked (cd $(LINUX_DIR)/include; ln -fs asm-ppc$(NOMMU) asm;) \ elif [ "$(ARCH)" = "mips" ];then \ (cd $(LINUX_DIR)/include; ln -fs asm-mips$(NOMMU) asm;) \ - elif [ "$(TARGET_ARCH)" = "mipsel" ];then \ + elif [ "$(ARCH)" = "mipsel" ];then \ (cd $(LINUX_DIR)/include; ln -fs asm-mips$(NOMMU) asm;) \ elif [ "$(ARCH)" = "arm" ];then \ (cd $(LINUX_DIR)/include; ln -fs asm-arm$(NOMMU) asm; \