diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-07-25 10:32:38 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-07-25 10:32:38 +0000 |
commit | 5820306407040480272527ceba969ecbc14f35af (patch) | |
tree | 3a51492bf92cbe6b90d66ace9969a33a4aaf8c68 /include | |
parent | 1266eb49eede1f1bb1f5bab230b0a1f9ee22408a (diff) | |
download | upstream-5820306407040480272527ceba969ecbc14f35af.tar.gz upstream-5820306407040480272527ceba969ecbc14f35af.tar.bz2 upstream-5820306407040480272527ceba969ecbc14f35af.zip |
only export GCC_HONOUR_COPTS for the built-in toolchain, fixes missing-fhonour-copts warnings with external toolchains
SVN-Revision: 27771
Diffstat (limited to 'include')
-rw-r--r-- | include/kernel.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/kernel.mk b/include/kernel.mk index a2dce091e9..020779fd63 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -14,7 +14,9 @@ ifeq ($(DUMP),1) BOARD?=<BOARD> LINUX_VERSION?=<LINUX_VERSION> else - export GCC_HONOUR_COPTS=s + ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) + export GCC_HONOUR_COPTS=s + endif LINUX_KMOD_SUFFIX=ko |