summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2007-09-16 14:08:23 +0000
committerNicolas Thill <nico@openwrt.org>2007-09-16 14:08:23 +0000
commit420f252a5863918a22403deea89813d73b3b1e90 (patch)
treeb13bfc4784bd096595c9303d9f553f22f924cfaa /include
parentea5e6f6571aa0f4c172e5fbaccbe132bb55bf70f (diff)
downloadmtk-20170518-420f252a5863918a22403deea89813d73b3b1e90.zip
mtk-20170518-420f252a5863918a22403deea89813d73b3b1e90.tar.gz
mtk-20170518-420f252a5863918a22403deea89813d73b3b1e90.tar.bz2
quote LINUX_VERSION to avoid shell errors at DUMP time
SVN-Revision: 8795
Diffstat (limited to 'include')
-rw-r--r--include/kernel-version.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kernel-version.mk b/include/kernel-version.mk
index 508cf99..b504f78 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)