diff options
author | Max Horn | 2009-04-03 15:08:26 +0000 |
---|---|---|
committer | Max Horn | 2009-04-03 15:08:26 +0000 |
commit | 52261c0bef6ce3da5ecbafa51f73c6e4ef547214 (patch) | |
tree | e1b84036987caee28fed3528ee99a9f538ed374c | |
parent | cf3265a1c9e089fb7943ea744590cecb169b96a0 (diff) | |
download | scummvm-rg350-52261c0bef6ce3da5ecbafa51f73c6e4ef547214.tar.gz scummvm-rg350-52261c0bef6ce3da5ecbafa51f73c6e4ef547214.tar.bz2 scummvm-rg350-52261c0bef6ce3da5ecbafa51f73c6e4ef547214.zip |
Make svn commands in Makefile.common slightly more robust against localization.
svn-id: r39811
-rw-r--r-- | Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common index 50aa72eb6c..c081e2beb3 100644 --- a/Makefile.common +++ b/Makefile.common @@ -126,11 +126,11 @@ VER_EXTRA = $(shell echo $(VERSION) | cut -d. -f 3 | cut -c2-) # 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/ |