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
This commit is contained in:
Shaun Ruffell 2010-11-11 19:32:58 +00:00
parent 8c24b0fd8f
commit d013943b4b

View File

@ -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