Mercurial > mplayer.hg
annotate version.sh @ 20645:7e3d835c5493
no real change needed for r20657
r20658: (cosmetics) Unify and clarify blank lines usage
author | voroshil |
---|---|
date | Sat, 04 Nov 2006 10:02:22 +0000 |
parents | 601bd947b61d |
children | 309992959801 |
rev | line source |
---|---|
420 | 1 #!/bin/sh |
2 | |
18759 | 3 test "$1" && extra="-$1" |
18595 | 4 |
19250
1ba1f19a30e9
Use LC_ALL instead of LANG since the former overrides the latter.
diego
parents:
19247
diff
changeset
|
5 svn_revision=`LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2` |
19963
601bd947b61d
Remove copy and paste error from FFmpeg sync, MPlayer does not support
diego
parents:
19696
diff
changeset
|
6 test $svn_revision || svn_revision=`grep revision .svn/entries | \ |
19696
0b07e95ca082
FFmpeg sync: Fall back on grep if svn client is not installed.
diego
parents:
19250
diff
changeset
|
7 cut -d '"' -f2 2> /dev/null` |
18791
72e6908f0347
Produce correct version string even when not run in a Subversion working copy.
diego
parents:
18784
diff
changeset
|
8 test $svn_revision || svn_revision=UNKNOWN |
72e6908f0347
Produce correct version string even when not run in a Subversion working copy.
diego
parents:
18784
diff
changeset
|
9 |
18784
b5777da79b53
Adapt FFmpeg version.sh that only recreates version.h if its content changed.
diego
parents:
18759
diff
changeset
|
10 NEW_REVISION="#define VERSION \"dev-SVN-r${svn_revision}${extra}\"" |
b5777da79b53
Adapt FFmpeg version.sh that only recreates version.h if its content changed.
diego
parents:
18759
diff
changeset
|
11 OLD_REVISION=`cat version.h 2> /dev/null` |
b5777da79b53
Adapt FFmpeg version.sh that only recreates version.h if its content changed.
diego
parents:
18759
diff
changeset
|
12 |
b5777da79b53
Adapt FFmpeg version.sh that only recreates version.h if its content changed.
diego
parents:
18759
diff
changeset
|
13 # Update version.h only on revision changes to avoid spurious rebuilds |
b5777da79b53
Adapt FFmpeg version.sh that only recreates version.h if its content changed.
diego
parents:
18759
diff
changeset
|
14 if test "$NEW_REVISION" != "$OLD_REVISION"; then |
b5777da79b53
Adapt FFmpeg version.sh that only recreates version.h if its content changed.
diego
parents:
18759
diff
changeset
|
15 echo "$NEW_REVISION" > version.h |
b5777da79b53
Adapt FFmpeg version.sh that only recreates version.h if its content changed.
diego
parents:
18759
diff
changeset
|
16 fi |