Skip to content

Commit

Permalink
Auto merge of #9627 - Jayflux:addWindowsOptionInTriple, r=larsbergstrom
Browse files Browse the repository at this point in the history
Now we use python for os_type, we need to catch 'windows' as well as …

…'mingw65_nt- fixes #9597

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9627)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo committed Feb 14, 2016
2 parents c11844c + cf2e0c0 commit 3f74c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/servo/command_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3f74c07

Please sign in to comment.