aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/util.py
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2017-04-14 23:56:59 -0400
committerAneesh Agrawal <aneeshusa@gmail.com>2017-04-16 22:12:17 -0400
commit022f0aa34a6b8688e816ff0c3ecbf970fc210cf7 (patch)
treeb7ae7a427414d500a80e38f41792bbab0c34e5e2 /python/servo/util.py
parentff74faee109fc4977865512aa5657166667da6b4 (diff)
downloadservo-022f0aa34a6b8688e816ff0c3ecbf970fc210cf7.tar.gz
servo-022f0aa34a6b8688e816ff0c3ecbf970fc210cf7.zip
Remove more deprecated Windows GNU code/docs
Diffstat (limited to 'python/servo/util.py')
-rw-r--r--python/servo/util.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/python/servo/util.py b/python/servo/util.py
index 4df128419ae..c3217df8bfd 100644
--- a/python/servo/util.py
+++ b/python/servo/util.py
@@ -32,12 +32,8 @@ def host_platform():
# If we are in a Visual Studio environment, use msvc
if os.getenv("PLATFORM") is not None:
os_type = "pc-windows-msvc"
- elif os.getenv("MSYSTEM") is not None:
- os_type = "pc-windows-gnu"
else:
os_type = "unknown"
- elif os_type.startswith("mingw64_nt-") or os_type.startswith("cygwin_nt-"):
- os_type = "pc-windows-gnu"
elif os_type == "freebsd":
os_type = "unknown-freebsd"
else: