aboutsummaryrefslogtreecommitdiffstats
path: root/include/kernel-version.mk
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/kernel-version.mk
parentea5e6f6571aa0f4c172e5fbaccbe132bb55bf70f (diff)
downloadupstream-420f252a5863918a22403deea89813d73b3b1e90.tar.gz
upstream-420f252a5863918a22403deea89813d73b3b1e90.tar.bz2
upstream-420f252a5863918a22403deea89813d73b3b1e90.zip
quote LINUX_VERSION to avoid shell errors at DUMP time
SVN-Revision: 8795
Diffstat (limited to 'include/kernel-version.mk')
-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 508cf9934a..b504f7816d 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)