1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 00:21:51 +02:00

quote LINUX_VERSION to avoid shell errors at DUMP time

SVN-Revision: 8795
This commit is contained in:
Nicolas Thill 2007-09-16 14:08:23 +00:00
parent ea5e6f6571
commit 420f252a58

@ -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)