diff options
author | Diego Biurrun | 2009-03-05 23:17:11 +0000 |
---|---|---|
committer | Diego Biurrun | 2009-03-05 23:17:11 +0000 |
commit | de2c2b5a9806886d93b29f92c7bb4cfa80ddfabd (patch) | |
tree | 32417caaa414bd693792a29f33c6cd9a6b0b7ff0 /version.sh | |
parent | cfd937b081adfa122e3f814b928c9ea0ada7f4f0 (diff) |
Directly read the version number from a VERSION file; useful for releases.
Originally committed as revision 17836 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'version.sh')
-rwxr-xr-x | version.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/version.sh b/version.sh index adaa46aa91..9809d6d14e 100755 --- a/version.sh +++ b/version.sh @@ -13,12 +13,16 @@ if ! test $revision; then test $revision && revision=git-$revision fi -# no version number found +# no revision number found test $revision || revision=UNKNOWN -test -n "$3" && revision=$revision-$3 +# releases extract the version number from the VERSION file +version=$(cat VERSION 2> /dev/null) +test $version || version=$revision -NEW_REVISION="#define FFMPEG_VERSION \"$revision\"" +test -n "$3" && version=$version-$3 + +NEW_REVISION="#define FFMPEG_VERSION \"$version\"" OLD_REVISION=$(cat version.h 2> /dev/null) # Update version.h only on revision changes to avoid spurious rebuilds |