From d7d5f4330b15667d9f364ebabd886a062b2741fb Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 24 Sep 2012 18:00:36 +0200 Subject: [PATCH] configure.ng: don't require GIT tree to detect version string --- configure.ng | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- -- 2.39.2