From 5fc1b6c351d25a21ad27aaf9b70d62fe51930408 Mon Sep 17 00:00:00 2001 From: Daniel Robertson Date: Sun, 5 Jun 2016 20:01:40 +0000 Subject: Add FreeBSD to `host_triple` Add FreeBSD to `host_triple` so that the correct nightly compiler will be downloaded. --- python/servo/command_base.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python/servo/command_base.py') diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 497717ea9b2..4618882627c 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -43,6 +43,8 @@ def host_triple(): os_type = "linux-androideabi" elif os_type == "windows" or os_type.startswith("mingw64_nt-") or os_type.startswith("cygwin_nt-"): os_type = "pc-windows-gnu" + elif os_type == "freebsd": + os_type = "unknown-freebsd" else: os_type = "unknown" -- cgit v1.2.3