build: use version from git describe if available

cute-signatures
Timo Teras 2009-04-14 08:56:06 +03:00
parent 355626171d
commit f4210298ad
1 changed files with 7 additions and 3 deletions

View File

@ -10,9 +10,13 @@
PACKAGE := apk-tools PACKAGE := apk-tools
VERSION := 2.0_pre10 VERSION := 2.0_pre10
SVN_REV := $(shell svn info 2> /dev/null | grep ^Revision | cut -d ' ' -f 2) GIT_REV := $(shell git describe || echo exported)
ifneq ($(SVN_REV),) ifneq ($(GIT_REV), exported)
FULL_VERSION := $(VERSION)-r$(SVN_REV) ifneq ($(filter apk-tools-$(VERSION)%, $(GIT_REV)),)
FULL_VERSION := $(patsubst apk-tools-%,%,$(GIT_REV))
else
FULL_VERSION := $(GIT_REV)
endif
else else
FULL_VERSION := $(VERSION) FULL_VERSION := $(VERSION)
endif endif