Commit 7ea3b2e0 authored by Diego Biurrun's avatar Diego Biurrun

Cope with localized Subversion clients.

Originally committed as revision 5859 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9cf94714
#!/bin/sh
svn_revision=`cd "$1" && svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
svn_revision=`cd "$1" && LANG=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\""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment