summaryrefslogtreecommitdiff
path: root/deps/v8/tools/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/utils.py')
-rw-r--r--deps/v8/tools/utils.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/deps/v8/tools/utils.py b/deps/v8/tools/utils.py
index fb94d14186..8083091b6d 100644
--- a/deps/v8/tools/utils.py
+++ b/deps/v8/tools/utils.py
@@ -49,8 +49,6 @@ def GuessOS():
return 'linux'
elif id == 'Darwin':
return 'macos'
- elif id.find('CYGWIN') >= 0:
- return 'cygwin'
elif id == 'Windows' or id == 'Microsoft':
# On Windows Vista platform.system() can return 'Microsoft' with some
# versions of Python, see http://bugs.python.org/issue1082