[MPlayer-cvslog] r24352 - trunk/version.sh
ivo
subversion at mplayerhq.hu
Thu Sep 6 18:28:31 CEST 2007
Author: ivo
Date: Thu Sep 6 18:28:31 2007
New Revision: 24352
Log:
add ; at the end of the sed commands. this fixes operation under cygwin.
Modified:
trunk/version.sh
Modified: trunk/version.sh
==============================================================================
--- trunk/version.sh (original)
+++ trunk/version.sh Thu Sep 6 18:28:31 2007
@@ -4,7 +4,7 @@ test "$1" && extra="-$1"
svn_revision=`LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
test $svn_revision || svn_revision=`grep revision .svn/entries 2>/dev/null | cut -d '"' -f2`
-test $svn_revision || svn_revision=`sed -n -e '/^dir$/{n;p;q}' .svn/entries 2>/dev/null`
+test $svn_revision || svn_revision=`sed -n -e '/^dir$/{n;p;q;}' .svn/entries 2>/dev/null`
test $svn_revision || svn_revision=UNKNOWN
NEW_REVISION="#define VERSION \"dev-SVN-r${svn_revision}${extra}\""
More information about the MPlayer-cvslog
mailing list