From 65e50be6571e4039c684d7039bf26211d0f14c91 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 23 Sep 2015 09:40:08 +0200 Subject: Fix a comparison that should be an assignment in host_triple(). --- python/servo/command_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/servo/command_base.py') diff --git a/python/servo/command_base.py b/python/servo/command_base.py index af39ffb8bdf..4de1caf5f71 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -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"]: -- cgit v1.2.3