mirror of
https://github.com/servo/servo.git
synced 2025-06-14 19:34:29 +00:00
Fix a comparison that should be an assignment in host_triple().
This commit is contained in:
parent
eca448363d
commit
65e50be657
1 changed files with 2 additions and 2 deletions
|
@ -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"]:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue