[Scummvm-cvs-logs] SF.net SVN: scummvm:[39811] scummvm/trunk/Makefile.common
fingolfin at users.sourceforge.net
fingolfin at users.sourceforge.net
Fri Apr 3 17:08:27 CEST 2009
Revision: 39811
http://scummvm.svn.sourceforge.net/scummvm/?rev=39811&view=rev
Author: fingolfin
Date: 2009-04-03 15:08:26 +0000 (Fri, 03 Apr 2009)
Log Message:
-----------
Make svn commands in Makefile.common slightly more robust against localization.
Modified Paths:
--------------
scummvm/trunk/Makefile.common
Modified: scummvm/trunk/Makefile.common
===================================================================
--- scummvm/trunk/Makefile.common 2009-04-03 14:53:56 UTC (rev 39810)
+++ scummvm/trunk/Makefile.common 2009-04-03 15:08:26 UTC (rev 39811)
@@ -126,11 +126,11 @@
# Get Subversion's working copy information
######################################################################
-ifeq ($(shell svn stat $(srcdir) 2>&1 | grep "is not a working copy"),)
+ifeq ($(shell LANG=C svn stat $(srcdir) 2>&1 | grep "is not a working copy"),)
SVNROOT := $(srcdir)
ifeq ($(origin SVNREV), undefined)
# Get the working copy base revision
-VER_SVNREV := $(shell svn info $(SVNROOT) | grep "^Revision" | cut -d ' ' -f 2)
+VER_SVNREV := $(shell LANG=C svn info $(SVNROOT) | grep "^Revision" | cut -d ' ' -f 2)
endif
else
SVNROOT := https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list