1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-07 02:54:19 -04:00

Force C locale for svn info.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4666 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2007-12-10 12:07:10 +00:00 committed by exg
parent cce9683658
commit 66a179b8e4

View File

@ -40,7 +40,7 @@ if $SVN --version >/dev/null 2>/dev/null; then
echo "Getting ChangeLog from svn..."
TZ=UTC $SVN log -v > $srcdir/ChangeLog
else
SVN_VERSION=`$SVN info $srcdir | grep 'Last Changed Rev' | awk '{print $4}'`
SVN_VERSION=`LC_ALL=C $SVN info $srcdir | grep 'Last Changed Rev' | awk '{print $4}'`
if test -z "$SVN_VERSION"; then
echo "**Warning**: Couldn't get svn revision number. This is probably not an svn checkout."
else