[Ffmpeg-cvslog] r5861 - trunk/version.sh
diego
subversion
Sun Jul 30 01:32:10 CEST 2006
Author: diego
Date: Sun Jul 30 01:32:10 2006
New Revision: 5861
Modified:
trunk/version.sh
Log:
Use LC_ALL instead of LANG since the former overrides the latter.
Modified: trunk/version.sh
==============================================================================
--- trunk/version.sh (original)
+++ trunk/version.sh Sun Jul 30 01:32:10 2006
@@ -1,6 +1,6 @@
#!/bin/sh
-svn_revision=`cd "$1" && LANG=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
+svn_revision=`cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
test $svn_revision || svn_revision=UNKNOWN
NEW_REVISION="#define FFMPEG_VERSION \"SVN-r$svn_revision\""
More information about the ffmpeg-cvslog
mailing list