summaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-01-14 18:30:34 (GMT)
committerSteven Knight <knight@baldmt.com>2010-01-14 18:30:34 (GMT)
commit961e4b707e76ef519ca1af2d3a0788599db6e710 (patch)
treef153610be8069f30675b6a636ef2043f51e3b83d /src/engine
parent12e6b068e0c40633b1445e13a75230c50b191428 (diff)
downloadSCons-961e4b707e76ef519ca1af2d3a0788599db6e710.zip
SCons-961e4b707e76ef519ca1af2d3a0788599db6e710.tar.gz
SCons-961e4b707e76ef519ca1af2d3a0788599db6e710.tar.bz2
Make the default SystemRoot a Windows-like "C:\\WINDOWS" instead of
"C:/WINDOWS", mainly so the output generated in the "Troubleshooting" appendix of the User's Guide looks coherent.
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/SCons/Platform/win32.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Platform/win32.py b/src/engine/SCons/Platform/win32.py
index bcdc50a..a50a6ae 100644
--- a/src/engine/SCons/Platform/win32.py
+++ b/src/engine/SCons/Platform/win32.py
@@ -195,7 +195,7 @@ def get_system_root():
return _system_root
# A resonable default if we can't read the registry
- val = os.environ.get('SystemRoot', "C:/WINDOWS")
+ val = os.environ.get('SystemRoot', "C:\\WINDOWS")
if SCons.Util.can_read_reg:
try: