From: Nicolas Thill Date: Sun, 16 Sep 2007 14:08:23 +0000 (+0000) Subject: quote LINUX_VERSION to avoid shell errors at DUMP time X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=420f252a5863918a22403deea89813d73b3b1e90;p=openwrt%2Fstaging%2Frmilecki.git quote LINUX_VERSION to avoid shell errors at DUMP time SVN-Revision: 8795 --- diff --git a/include/kernel-version.mk b/include/kernel-version.mk index 508cf9934a5..b504f7816d2 100644 --- a/include/kernel-version.mk +++ b/include/kernel-version.mk @@ -21,5 +21,5 @@ endif LINUX_KERNEL_MD5SUM?=x KERNEL?=2.$(word 2,$(subst ., ,$(strip $(LINUX_VERSION)))) -KERNEL_PATCHVER=$(shell echo $(LINUX_VERSION) | cut -d. -f1,2,3 | cut -d- -f1) +KERNEL_PATCHVER=$(shell echo '$(LINUX_VERSION)' | cut -d. -f1,2,3 | cut -d- -f1)