help_mp-hu.h synced with r19462
[mplayer/greg.git] / version.sh
blob0720c878e1e0f25777e4ce92be649608786c6864
1 #!/bin/sh
3 test "$1" && extra="-$1"
5 svn_revision=`LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
6 test $svn_revision || svn_revision=UNKNOWN
8 NEW_REVISION="#define VERSION \"dev-SVN-r${svn_revision}${extra}\""
9 OLD_REVISION=`cat version.h 2> /dev/null`
11 # Update version.h only on revision changes to avoid spurious rebuilds
12 if test "$NEW_REVISION" != "$OLD_REVISION"; then
13 echo "$NEW_REVISION" > version.h