Detect version for releases en dev versions

This commit is contained in:
Jan-E 2016-03-13 18:18:22 +01:00
parent 4cde76c9c3
commit fa36537f82
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ THIS_MAKEFILE := $(lastword $(MAKEFILE_LIST))
USE_CYTHON := 0 USE_CYTHON := 0
#USE_CYTHON := 1 #USE_CYTHON := 1
_VERSION := $(shell grep AC_INIT ../configure.ac | cut -d'[' -f3 | sed -r -e 's/(-DEV)?], //g') _VERSION := $(shell grep AC_INIT ../configure.ac | cut -d'[' -f3 | sed -e 's/-DEV//g' -e 's/], //g')
_VERSION := $(subst ., ,$(_VERSION)) _VERSION := $(subst ., ,$(_VERSION))
VER_MAJOR := $(word 1,$(_VERSION)) VER_MAJOR := $(word 1,$(_VERSION))
VER_MINOR := $(word 2,$(_VERSION)) VER_MINOR := $(word 2,$(_VERSION))