diff options
author | TsiChung Liew <Tsi-Chung.Liew@freescale.com> | 2008-04-30 12:10:23 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-04-30 22:35:13 +0200 |
commit | b7166e05a513c0806b63b9dfb6f1d77645cede2a (patch) | |
tree | 759f01b9febba11c08cab07c80ca6adeeea44a89 /cpu/mcf52x2/config.mk | |
parent | 378e7ec95da4751ec8fe461baacab2bf7d2512a9 (diff) | |
download | u-boot-imx-b7166e05a513c0806b63b9dfb6f1d77645cede2a.zip u-boot-imx-b7166e05a513c0806b63b9dfb6f1d77645cede2a.tar.gz u-boot-imx-b7166e05a513c0806b63b9dfb6f1d77645cede2a.tar.bz2 |
ColdFire: Get information from the correct GCC
Signed-off-by: Kurt Mahan <kmahan@freescale.com>
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
Diffstat (limited to 'cpu/mcf52x2/config.mk')
-rw-r--r-- | cpu/mcf52x2/config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mcf52x2/config.mk b/cpu/mcf52x2/config.mk index 650e340..be360f8 100644 --- a/cpu/mcf52x2/config.mk +++ b/cpu/mcf52x2/config.mk @@ -34,7 +34,7 @@ is5275:=$(shell grep CONFIG_M5275 $(TOPDIR)/include/$(cfg)) is5282:=$(shell grep CONFIG_M5282 $(TOPDIR)/include/$(cfg)) -ifeq ($(findstring 4.2,$(shell $(CC) --version)),4.2) +ifeq ($(findstring 4.2,$(shell $(CROSS_COMPILE)gcc --version)),4.2) ifneq (,$(findstring CONFIG_M5249,$(is5249))) PLATFORM_CPPFLAGS += -mcpu=5249 |