From: Felix Fietkau Date: Fri, 16 Mar 2007 20:50:57 +0000 (+0000) Subject: strip quotes in gcc version check X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=871358618f8efc1b987c71f265fadf83a881b947;p=openwrt%2Fsvn-archive%2Fpackages.git strip quotes in gcc version check SVN-Revision: 6586 --- diff --git a/utils/mksh/Makefile b/utils/mksh/Makefile index 9206c1e6c..3468f21cc 100644 --- a/utils/mksh/Makefile +++ b/utils/mksh/Makefile @@ -13,7 +13,8 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) include $(INCLUDE_DIR)/package.mk # This program seems to depend on libssp, but only for GCC 4 -GCCVER:=$(if $(DUMP),4,$(word 1,$(subst ., ,$(CONFIG_GCC_VERSION)))) +GCCVER:=$(if $(DUMP),4,$(word 1,$(subst ., ,$(subst ",,$(CONFIG_GCC_VERSION))))) +#")))) ifeq ($(GCCVER),4) DEP:=+libssp else