From: Florian Fainelli Date: Sun, 4 Jan 2009 12:56:31 +0000 (+0000) Subject: Fix ssp enabling/disabling (#4388) X-Git-Tag: reboot~24870 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=a3ecf3d3dc8f077ae1d619dc907f0e699b1a55d2;p=openwrt%2Fstaging%2Fchunkeey.git Fix ssp enabling/disabling (#4388) SVN-Revision: 13856 --- diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index f11bd8c30b..9b3a34a0b5 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -52,9 +52,9 @@ SEP:=, TARGET_LANGUAGES:="c$(if $(CONFIG_INSTALL_LIBSTDCPP),$(SEP)c++)$(if $(CONFIG_INSTALL_LIBGCJ),$(SEP)java)" ifeq ($(CONFIG_SSP_SUPPORT),y) - SSP:=--enable-ssp + SSP:=--enable-libssp else - SSP:=--disable-ssp + SSP:=--disable-libssp endif EXTRA_TARGET=$(if $(CONFIG_EXTRA_TARGET_ARCH),--enable-biarch --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-uclibc)