Mercurial > mplayer.hg
annotate version.sh @ 18645:8c6bdea1585c
review of ports.xml and formats.xml translations
author | kraymer |
---|---|
date | Thu, 08 Jun 2006 10:07:12 +0000 |
parents | 06c236dd604b |
children | 04ed79acda15 |
rev | line source |
---|---|
420 | 1 #!/bin/sh |
2 | |
18624
06c236dd604b
avoid usage of head -1/head -n 1 and use sed 1q instead
ivo
parents:
18595
diff
changeset
|
3 revision=r`grep committed-rev .svn/entries | sed 1q | cut -d '"' -f 2 2>/dev/null` |
3292
7fa3a928631a
not it looks like this 'MPlayer CVS-011203-19:47-gcc-2.95.3'
jaf
parents:
1621
diff
changeset
|
4 |
7447
a49219323787
moved to to avoid CVS-XXYYZZ- versions (if no given) - altought this comment is bigger than the patch :)
alex
parents:
5949
diff
changeset
|
5 extra="" |
7448
b464616d40b5
Should be: if test ; then - D Richard Felker III <dalias@aerifal.cx>
alex
parents:
7447
diff
changeset
|
6 if test "$1" ; then |
15650 | 7 extra="-$1" |
7447
a49219323787
moved to to avoid CVS-XXYYZZ- versions (if no given) - altought this comment is bigger than the patch :)
alex
parents:
5949
diff
changeset
|
8 fi |
18595 | 9 |
10 echo "#define VERSION \"dev-SVN-${revision}${extra}\"" > version.h |