mirror of
https://github.com/servo/servo.git
synced 2025-08-02 04:00:32 +01:00
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:
commit
83435d7765
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