From 5d5535a7a9c98d41f618030290068728daabfc5c Mon Sep 17 00:00:00 2001 From: Thorsten von Eicken Date: Mon, 12 Dec 2016 22:53:39 -0800 Subject: [PATCH] try to fix versioning in Makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 544507a..3445121 100644 --- a/Makefile +++ b/Makefile @@ -189,11 +189,13 @@ endif TRAVIS_BRANCH?=$(shell git symbolic-ref --short HEAD --quiet) # Use git describe to get the latest version tag, commits since then, sha and dirty flag, this # results is something like "v1.2.0-13-ab6cedf-dirty" -VERSION := $(shell (git describe --tags --match 'v*' --long --dirty || echo "no-tag") | sed -re 's/(\.0)?-/./') +VERSION := $(shell (git describe --tags --match 'v*' --long --dirty || echo "no-tag") | sed -re 's/(v[0-9]*\.[0-9]*)\.[0-9]*-/\1./') # If not on master then insert the branch name ifneq ($(TRAVIS_BRANCH),master) +ifneq ($(TRAVIS_BRANCH),$(patsubst -*,,$(VERSION))) VERSION := $(shell echo $(VERSION) | sed -e 's/-/-$(TRAVIS_BRANCH)-/') endif +endif VERSION :=$(VERSION) $(info VERSION is $(VERSION))