From 88cebc6db367f0619eefac55c01d4ca532278a54 Mon Sep 17 00:00:00 2001 From: Jan Lehnardt Date: Sat, 12 Sep 2009 22:33:23 +0000 Subject: use first 8 bytes of the commit hash as the release info when building from git git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@814245 13f79535-47bb-0310-9956-ffa450edef68 --- bootstrap | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index ebc3ffb4..8cfc2c01 100755 --- a/bootstrap +++ b/bootstrap @@ -32,7 +32,12 @@ get () { mkdir -p build-aux if test -z "$REVISION"; then - REVISION=`\`which svn\` info . 2> /dev/null | awk "/Revision:/{print \\$2}"` + if test -d .git; then + REVISION=`git log | head -1 | awk '{print $2}' | cut -b 1-8`-git + else + # default to svn + REVISION=`\`which svn\` info . 2> /dev/null | awk "/Revision:/{print \\$2}"` + fi fi if test -z "`get LOCAL_VERSION_STAGE`" -o -z "$REVISION"; then sed "s/%release%//" < acinclude.m4.in > acinclude.m4 -- cgit v1.2.3