From cf2e0c0f4c34c9b9aa989dcf76a93ab8b3b4b320 Mon Sep 17 00:00:00 2001 From: Jason Williams Date: Sat, 13 Feb 2016 22:42:28 +0000 Subject: [PATCH] Now we use python for os_type, we need to catch 'windows' as well as 'mingw65_nt- fixes #9597' --- python/servo/command_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 7786d1d5a34..a3724869e04 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -41,7 +41,7 @@ def host_triple(): os_type = "apple-darwin" elif os_type == "android": os_type = "linux-androideabi" - elif os_type.startswith("mingw64_nt-"): + elif os_type == "windows" or os_type.startswith("mingw64_nt-"): os_type = "pc-windows-gnu" else: os_type = "unknown"