summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorManuel Novoa III2003-11-25 00:23:16 +0100
committerManuel Novoa III2003-11-25 00:23:16 +0100
commitce6884732d2a4b644e556922737cb1274008f635 (patch)
tree814e7df2fc273d7e13ddfd296ee78fab472c7aba /make
parentFix the condition for applying the i386 soft float patch. (diff)
downloadbuildroot-ce6884732d2a4b644e556922737cb1274008f635.tar.gz
buildroot-ce6884732d2a4b644e556922737cb1274008f635.tar.xz
buildroot-ce6884732d2a4b644e556922737cb1274008f635.zip
Use ARCH... not TARGET_ARCH in the mipsel test.
Diffstat (limited to 'make')
-rw-r--r--make/kernel-headers.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/kernel-headers.mk b/make/kernel-headers.mk
index dbed03c27..06ceb2be7 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; \