diff options
author | Damjan Marion <damarion@cisco.com> | 2018-10-11 09:18:26 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-10-11 17:13:35 +0000 |
commit | 5551e41f78249b72715203ecd93586f48acccbf4 (patch) | |
tree | ddb25fd1a434184480183180dbcd9c5553d01c42 /build | |
parent | 90395743d30fdde9e1e76c18d8ab5c2f0435c7b8 (diff) |
Fix vpp-ext-deps package version in stable branch
Change-Id: Ifb33622b50113501f1d23ab94ba9da708678d6be
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/external/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/external/Makefile b/build/external/Makefile index 8ac764caf25..1082cfc1c39 100644 --- a/build/external/Makefile +++ b/build/external/Makefile @@ -20,7 +20,7 @@ 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_SUFFIX ?= $(shell git log --oneline $$(git describe --abbrev=0).. . | wc -l) +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) |