summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild/util/lastchange.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/util/lastchange.py b/build/util/lastchange.py
index 7c34fbe..c7200f1 100755
--- a/build/util/lastchange.py
+++ b/build/util/lastchange.py
@@ -60,7 +60,8 @@ def FetchSVNRevision(directory):
proc = subprocess.Popen(['svn', 'info'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
- cwd=directory)
+ cwd=directory,
+ shell=(sys.platform=='win32'))
except OSError:
# command is apparently either not installed or not executable.
return None