mirror of https://github.com/FFmpeg/FFmpeg.git
based on a patch by Ismail Dönmez ismail$$at$$pardus$$dot$$org$$dot$$tr Originally committed as revision 5502 to svn://svn.ffmpeg.org/ffmpeg/trunkpull/126/head
parent
d2845d68c8
commit
f1cc88a5d6
6 changed files with 20 additions and 4 deletions
@ -0,0 +1,10 @@ |
|||||||
|
#!/bin/sh |
||||||
|
|
||||||
|
svn_revision=`svn info | grep Revision | cut -d' ' -f2 || echo UNKNOWN` |
||||||
|
NEW_REVISION="#define FFMPEG_VERSION \"SVN-r$svn_revision\"" |
||||||
|
OLD_REVISION=`cat version.h 2> /dev/null` |
||||||
|
|
||||||
|
# Update version.h only on revision changes to avoid spurious rebuilds |
||||||
|
if test "$NEW_REVISION" != "$OLD_REVISION"; then |
||||||
|
echo "$NEW_REVISION" > version.h |
||||||
|
fi |
Loading…
Reference in new issue