use git describe for naming version in pure git clones

Patch by: Ramiro Polla <ramiro <DOT> polla  gmail <DOT> com>

Originally committed as revision 26394 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla 2011-01-16 18:34:09 +00:00 committed by Janne Grunau
parent adb8669c04
commit 8032d1dee9

View File

@ -18,7 +18,7 @@ fi
# check for git short hash
if ! test $revision; then
revision=$(cd "$1" && git log -1 --pretty=format:%h 2> /dev/null)
revision=$(cd "$1" && git describe --always 2> /dev/null)
test $revision && revision=git-$revision
fi