aboutsummaryrefslogtreecommitdiffstats
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
commit3194df157f460efc5585bef07b1d08da21d61df9 (patch)
tree93d05157fd158017228b99759b8743f5e61420fe
parentc3f3661b31abb1f4f89f1df0e921ef597935dfce (diff)
downloadmaster-187ad058-3194df157f460efc5585bef07b1d08da21d61df9.tar.gz
master-187ad058-3194df157f460efc5585bef07b1d08da21d61df9.tar.bz2
master-187ad058-3194df157f460efc5585bef07b1d08da21d61df9.zip
quote LINUX_VERSION to avoid shell errors at DUMP time
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8795 3c298f89-4303-0410-b956-a3cf2f4a3e73
-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)