configure.ng: don't require GIT tree to detect version string

This commit is contained in:
Alexander Barton 2012-09-24 18:00:36 +02:00
parent 79c1222896
commit d7d5f4330b
1 changed files with 6 additions and 1 deletions

View File

@ -9,7 +9,12 @@
# Please read the file COPYING, README and AUTHORS for more information.
#
define(VERSION_ID,esyscmd(git describe|sed -e 's/rel-//g'|sed -e 's/-/~/'|tr -d \\n))
define(VERSION_ID,esyscmd([
V=`git describe 2>/dev/null | sed -e 's/rel-//g' | sed -e 's/-/~/'`;
[ -z "$V" -a -r configure ] \
&& V=`grep "PACKAGE_STRING=" configure | cut -d"'" -f2 | cut -d' ' -f2`
( [ -n "$V" ] && echo "$V" || echo "??" ) | tr -d '\n';
]))
# -- Initialisation --