1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 04:17:11 +02:00

openwrt: honour gcc extra configuration flags

Although the CONFIG_EXTRA_GCC_OPTIONS flag is available, it isn't used
anywhere.

This change adds the extra flag to both gcc configure stages.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9406 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-10-23 06:23:17 +00:00
parent 42ef307c66
commit ebe4d35428

View File

@ -60,6 +60,7 @@ define Stage1/Configure
--disable-nls \ --disable-nls \
--disable-libmudflap \ --disable-libmudflap \
--disable-multilib \ --disable-multilib \
$(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
); );
endef endef
define Stage1/Compile define Stage1/Compile
@ -91,6 +92,7 @@ define Stage2/Configure
--disable-nls \ --disable-nls \
--disable-libmudflap \ --disable-libmudflap \
--disable-multilib \ --disable-multilib \
$(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
); );
endef endef