Auto merge of #7716 - servo:host-triple-assign, r=Manishearth

Fix a comparison that should be an assignment in host_triple().



<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7716)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-09-23 07:39:50 -06:00
commit 83435d7765

View file

@ -36,9 +36,9 @@ def host_triple():
elif os_type == "darwin":
os_type = "apple-darwin"
elif os_type == "android":
os_type == "linux-androideabi"
os_type = "linux-androideabi"
else:
os_type == "unknown"
os_type = "unknown"
cpu_type = subprocess.check_output(["uname", "-m"]).strip().lower()
if cpu_type in ["i386", "i486", "i686", "i768", "x86"]: