Index: build/util/lastchange.py |
diff --git a/build/util/lastchange.py b/build/util/lastchange.py |
index 7c34fbea3b41f50014c36858b12c2613d9cefc50..c7200f1e25165494192e35bd6bdeaffc03067175 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 |