forked from FFmpeg/FFmpeg
Use the contents of RELEASE as version fallback instead of 'UNKNOWN'
This makes binaries produced by source tarballs identify themselves with the version number of the corresponding release series, unless overriden by a 'VERSION' file.
This commit is contained in:
parent
7b2d219045
commit
8fab4007c8
2 changed files with 2 additions and 1 deletions
1
RELEASE
Normal file
1
RELEASE
Normal file
|
@ -0,0 +1 @@
|
|||
0.7
|
|
@ -5,7 +5,7 @@ revision=$(cd "$1" && git describe --always 2> /dev/null)
|
|||
test "$revision" && revision=git-$revision
|
||||
|
||||
# no revision number found
|
||||
test "$revision" || revision=UNKNOWN
|
||||
test "$revision" || revision=$(cd "$1" && cat RELEASE 2> /dev/null)
|
||||
|
||||
# releases extract the version number from the VERSION file
|
||||
version=$(cd "$1" && cat VERSION 2> /dev/null)
|
||||
|
|
Loading…
Add table
Reference in a new issue