summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Platform/__init__.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2006-01-21 12:04:15 (GMT)
committerSteven Knight <knight@baldmt.com>2006-01-21 12:04:15 (GMT)
commitfcbe6204ad17af3c5b5fd138de734a45399cb839 (patch)
tree0b735d528b9b3eb82b4d6170e6ea89cf5f1e15cd /src/engine/SCons/Platform/__init__.py
parent8029f3079db3fcd71d4fc10e3d6cc28987349b56 (diff)
downloadSCons-fcbe6204ad17af3c5b5fd138de734a45399cb839.zip
SCons-fcbe6204ad17af3c5b5fd138de734a45399cb839.tar.gz
SCons-fcbe6204ad17af3c5b5fd138de734a45399cb839.tar.bz2
Deprecate $WIN32 variables name in place of $WINDOWS* variables names, and eliminate other Win32 references.
Diffstat (limited to 'src/engine/SCons/Platform/__init__.py')
-rw-r--r--src/engine/SCons/Platform/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/SCons/Platform/__init__.py b/src/engine/SCons/Platform/__init__.py
index 7a2f1c3..b1a0a67 100644
--- a/src/engine/SCons/Platform/__init__.py
+++ b/src/engine/SCons/Platform/__init__.py
@@ -151,8 +151,8 @@ class TempFileMunge:
return self.cmd
# We do a normpath because mktemp() has what appears to be
- # a bug in Win32 that will use a forward slash as a path
- # delimiter. Win32's link mistakes that for a command line
+ # a bug in Windows that will use a forward slash as a path
+ # delimiter. Windows's link mistakes that for a command line
# switch and barfs.
#
# We use the .lnk suffix for the benefit of the Phar Lap
@@ -170,8 +170,8 @@ class TempFileMunge:
rm = env.Detect('rm') or 'del'
else:
# Don't use 'rm' if the shell is not sh, because rm won't
- # work with the win32 shells (cmd.exe or command.com) or
- # win32 path names.
+ # work with the Windows shells (cmd.exe or command.com) or
+ # Windows path names.
rm = 'del'
prefix = env.subst('$TEMPFILEPREFIX')