Skip to content
Snippets Groups Projects
Commit 59d0fc57 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Use LC_ALL instead of LANG since the former overrides the latter.

Originally committed as revision 5861 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d6a07a13
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/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 test $svn_revision || svn_revision=UNKNOWN
NEW_REVISION="#define FFMPEG_VERSION \"SVN-r$svn_revision\"" NEW_REVISION="#define FFMPEG_VERSION \"SVN-r$svn_revision\""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment