diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-10-24 20:03:14 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-10-24 20:03:14 +0000 |
commit | d22f50a2526d6503a7f00c45e0679b77dd583c0e (patch) | |
tree | 59946bea42d339366dd4de3902a13b834ebcab28 /rules.mk | |
parent | 18c1ffe97caf1a2747dd0255084115711da78b28 (diff) | |
download | upstream-d22f50a2526d6503a7f00c45e0679b77dd583c0e.tar.gz upstream-d22f50a2526d6503a7f00c45e0679b77dd583c0e.tar.bz2 upstream-d22f50a2526d6503a7f00c45e0679b77dd583c0e.zip |
Treat i686 as an i386 if present, fixes build errors with wireless-tools on i686 (x86 mediacenter)
SVN-Revision: 9439
Diffstat (limited to 'rules.mk')
-rw-r--r-- | rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ $(strip $(subst ",,$(1))) endef #")) -ARCH:=$(call qstrip,$(CONFIG_ARCH)) +ARCH:=$(call qstrip,$(shell echo $(CONFIG_ARCH) | sed -e 's/i[3-9]86/i386/')) BOARD:=$(call qstrip,$(CONFIG_TARGET_BOARD)) TARGET_OPTIMIZATION:=$(call qstrip,$(CONFIG_TARGET_OPTIMIZATION)) BUILD_SUFFIX:=$(call qstrip,$(CONFIG_BUILD_SUFFIX)) |