diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-09-27 13:03:45 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-09-27 13:03:45 +0000 |
commit | 03e14c13e3b1981baf6e4eeca1ce9ee41e634dcc (patch) | |
tree | c31771b6e8d643cbc30d1a3ac85d1685193abb4b | |
parent | a6f15f7321f046d2b1737c2312712db685ebc150 (diff) | |
download | upstream-03e14c13e3b1981baf6e4eeca1ce9ee41e634dcc.tar.gz upstream-03e14c13e3b1981baf6e4eeca1ce9ee41e634dcc.tar.bz2 upstream-03e14c13e3b1981baf6e4eeca1ce9ee41e634dcc.zip |
build: fix typo in arm cflags
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 38237
-rw-r--r-- | include/target.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/target.mk b/include/target.mk index 8a435c1a8b..3acca12ab0 100644 --- a/include/target.mk +++ b/include/target.mk @@ -225,7 +225,7 @@ ifeq ($(DUMP),1) CPU_CFLAGS_cortex-a9 = -march=armv7-a -mtune=cortex-a9 CPU_CFLAGS_fa526 = -march=armv4 -mtune=fa526 CPU_CFLAGS_mpcore = -march=armv6k -mtune=mpcore - CPU_CFLAGS_xscale = march=armv5te -mtune=xscale + CPU_CFLAGS_xscale = -march=armv5te -mtune=xscale CPU_CFLAGS_vfp = -mfpu=vfp -mfloat-abi=softfp CPU_CFLAGS_vfpv3 = -mfpu=vfpv3-d16 -mfloat-abi=softfp endif |