cmake: fix errors in external when building past point-release 51/18551/2
authorAndrew Yourtchenko <ayourtch@gmail.com>
Wed, 27 Mar 2019 14:22:40 +0000 (15:22 +0100)
committerDave Wallace <dwallacelf@gmail.com>
Wed, 10 Apr 2019 18:48:34 +0000 (18:48 +0000)
Change-Id: I23b4816e4ef2c6a2fa825fbd063ea25ff2024151
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
build/external/Makefile

index c56e16d..bc54efe 100644 (file)
@@ -19,7 +19,7 @@ MAKE ?= make
 MAKE_ARGS ?= -j
 BUILD_DIR        ?= $(CURDIR)/_build
 INSTALL_DIR      ?= $(CURDIR)/_install
-PKG_VERSION ?= $(shell git describe --abbrev=0 | cut -d- -f1 | cut -dv -f2)
+PKG_VERSION ?= $(shell git describe --abbrev=0 | cut -d- -f1 | cut -dv -f2 | cut -d. -f1,2)
 PKG_SUFFIX ?= $(shell git log --oneline v$(PKG_VERSION)-rc0.. . | wc -l)
 JOBS := $(if $(shell [ -f /proc/cpuinfo ] && head /proc/cpuinfo),\
        $(shell grep -c ^processor /proc/cpuinfo), 2)