git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Check if a git-svn revision number is available to try to get better version
[ffmpeg.git]
/
version.sh
diff --git
a/version.sh
b/version.sh
index
250caef
..
8f57b75
100755
(executable)
--- a/
version.sh
+++ b/
version.sh
@@
-10,6
+10,12
@@
q
}' .svn/entries 2>/dev/null)
test $revision && revision=SVN-r$revision
}' .svn/entries 2>/dev/null)
test $revision && revision=SVN-r$revision
+# check for git svn revision number
+if ! test $revision; then
+ revision=$(cd "$1" && git svn find-rev HEAD)
+ test $revision && revision=git-svn-r$revision
+fi
+
# check for git short hash
if ! test $revision; then
revision=$(cd "$1" && git log -1 --pretty=format:%h)
# check for git short hash
if ! test $revision; then
revision=$(cd "$1" && git log -1 --pretty=format:%h)