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.openwrt.org/?a=commitdiff_plain;h=19c4b8defaea0a64f4e199be8f10daf5e5ada226;hp=9c1a83ec57df77cc759553b340702bfa813e87ed;p=openwrt%2Fsvn-archive%2Farchive.git strip quotes in gcc version check SVN-Revision: 6586 --- diff --git a/utils/mksh/Makefile b/utils/mksh/Makefile index 9206c1e6c3..3468f21cce 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