summaryrefslogtreecommitdiff
path: root/build_tools
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2010-11-11 19:32:58 +0000
committerShaun Ruffell <sruffell@digium.com>2010-11-11 19:32:58 +0000
commit460fce02511fa814304b888c105aeaa3ca6cbabf (patch)
treedf8bc5e1b181974654558ef00c97c112e8196a96 /build_tools
parent02d844b70604210abb3991c062b3101fbff47da6 (diff)
make_version: Use 'git rev-parse' if only looking for a sha5.
Different versions of git have variability in how the log output looks. Instead of git log, we can use git rev-parse directly. Signed-off-by: Shaun Ruffell <sruffell@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9475 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/make_version2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_tools/make_version b/build_tools/make_version
index 488fc8c..b9bb29f 100755
--- a/build_tools/make_version
+++ b/build_tools/make_version
@@ -66,7 +66,7 @@ elif [ -d ${1}/.git ]; then
fi
# Some older versions of git do not support all the above
# options.
- VERSION=GIT-`git log --abbrev-commit -1 --pretty=oneline --abbrev=7 | cut -f 1 -d .`${MODIFIED}
+ VERSION=GIT-`git rev-parse --short --verify HEAD`${MODIFIED}
fi
echo ${VERSION}
else