* [U-Boot-Users] cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
@ 2008-02-23 8:05 Shinya Kuribayashi
2008-02-23 8:45 ` Wolfgang Denk
0 siblings, 1 reply; 2+ messages in thread
From: Shinya Kuribayashi @ 2008-02-23 8:05 UTC (permalink / raw)
To: u-boot
This will reduce the build time.
Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
---
cpu/ppc4xx/config.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/cpu/ppc4xx/config.mk b/cpu/ppc4xx/config.mk
index 311c97b..baa97a4 100644
--- a/cpu/ppc4xx/config.mk
+++ b/cpu/ppc4xx/config.mk
@@ -25,7 +25,7 @@ PLATFORM_RELFLAGS += -fPIC -ffixed-r14 -meabi -fno-strict-aliasing
PLATFORM_CPPFLAGS += -DCONFIG_4xx -ffixed-r2 -mstring -msoft-float
cfg=$(shell grep configs $(OBJTREE)/include/config.h | sed 's/.*<\(configs.*\)>/\1/')
-is440=$(shell grep CONFIG_440 $(TOPDIR)/include/$(cfg))
+is440:=$(shell grep CONFIG_440 $(TOPDIR)/include/$(cfg))
ifneq (,$(findstring CONFIG_440,$(is440)))
PLATFORM_CPPFLAGS += -Wa,-m440 -mcpu=440
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-02-23 8:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-23 8:05 [U-Boot-Users] cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate Shinya Kuribayashi
2008-02-23 8:45 ` Wolfgang Denk
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.