servo: Merge #7716 - Fix a comparison that should be an assignment in host_triple() (from servo:host-triple-assign); r=Manishearth

Source-Repo: https://github.com/servo/servo
Source-Revision: 83435d77650382d5901603170f028f5888ea82c1
This commit is contained in:
Ms2ger 2015-09-23 07:39:50 -06:00
parent a0f53e1f0e
commit 0f8343ce37

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"]: