diff options
author | Maxim Grigoriev <maxim2405@gmail.com> | 2009-07-24 02:19:24 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-07-24 02:19:24 +0200 |
commit | 715ab98169f2a41a6954a5027933c90bbf9006df (patch) | |
tree | 5fb95d54d170ffde46153608cbb8f14e479ed9bd | |
parent | 5ddb904a8620bceddd4df1c05c7342e10592c0c3 (diff) | |
download | buildroot-novena-715ab98169f2a41a6954a5027933c90bbf9006df.tar.gz buildroot-novena-715ab98169f2a41a6954a5027933c90bbf9006df.zip |
project: xtensa specific ARCH handling
Part of #163.
Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | project/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/project/Makefile.in b/project/Makefile.in index 49aec141a..85c0eaeed 100644 --- a/project/Makefile.in +++ b/project/Makefile.in @@ -10,6 +10,9 @@ QUIET:=$(if $(findstring s,$(MAKEFLAGS)),-q,) # Strip off the annoying quoting ARCH:=$(strip $(subst ",, $(BR2_ARCH))) +ifeq ($(ARCH),xtensa) +ARCH:=$(ARCH)_$(strip $(subst ",,$(BR2_xtensa_core_name))) +endif #")) WGET:=$(strip $(subst ",, $(BR2_WGET))) $(SPIDER) $(QUIET) #")) |