From: florian Date: Sun, 4 Jan 2009 12:56:31 +0000 (+0000) Subject: Fix ssp enabling/disabling (#4388) X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=421612f2340b59d0ae92737488aa9b58cd1cebf0 Fix ssp enabling/disabling (#4388) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13856 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index f11bd8c30..9b3a34a0b 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)