mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Produce correct version string even when not run in a Subversion working copy.
based on a patch by Ismail Dönmez ismail##@##pardus##.##org##.##tr Originally committed as revision 5511 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fd071c2659
commit
a66d63a94e
@ -1,6 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
svn_revision=`svn info | grep Revision | cut -d' ' -f2 || echo UNKNOWN`
|
||||
svn_revision=`svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
|
||||
test $svn_revision || svn_revision=UNKNOWN
|
||||
|
||||
NEW_REVISION="#define FFMPEG_VERSION \"SVN-r$svn_revision\""
|
||||
OLD_REVISION=`cat version.h 2> /dev/null`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user