From 0352f17687b4582c5ee62905aed35130d77501cc Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Fri, 21 Jul 2006 11:24:47 +0200 Subject: [PATCH] Fix MIPS LE build problem Patch by Thomas Lange, 10 Aug 2005 --- CHANGELOG | 3 +++ cpu/mips/config.mk | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 4f6da77a69..2c92f5b399 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,9 @@ Changes since U-Boot 1.1.4: ====================================================================== +* Fix MIPS LE build problem + Patch by Thomas Lange, 10 Aug 2005 + * Check argument count in "mii" command. Problem pointed out by Andrew Dyer, 13 Jun 2005 diff --git a/cpu/mips/config.mk b/cpu/mips/config.mk index c357615c03..b29986e26b 100644 --- a/cpu/mips/config.mk +++ b/cpu/mips/config.mk @@ -21,7 +21,7 @@ # MA 02111-1307 USA # v=$(shell \ -mips-linux-as --version|grep "GNU assembler"|awk '{print $$3}'|awk -F . '{print $$2}') +$(CROSS_COMPILE)as --version|grep "GNU assembler"|awk '{print $$3}'|awk -F . '{print $$2}') MIPSFLAGS=$(shell \ if [ "$v" -lt "14" ]; then \ echo "-mcpu=4kc"; \ -- 2.30.2