about summary refs log tree commit diff
path: root/configure.ng
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ng')
-rw-r--r--configure.ng7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ng b/configure.ng
index 25654f9c..da723e8f 100644
--- a/configure.ng
+++ b/configure.ng
@@ -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 --