diff options
author | Daniel Robertson <dan.robertson@anidata.org> | 2016-06-05 20:01:40 +0000 |
---|---|---|
committer | Daniel Robertson <dan.robertson@anidata.org> | 2016-06-05 21:00:16 +0000 |
commit | 5fc1b6c351d25a21ad27aaf9b70d62fe51930408 (patch) | |
tree | 1da0dceba0ce5b6a4f5e9b14428cd05acb09644d /python/servo/command_base.py | |
parent | 44126da60e2494b5f59bee88833058ba1e66f811 (diff) | |
download | servo-5fc1b6c351d25a21ad27aaf9b70d62fe51930408.tar.gz servo-5fc1b6c351d25a21ad27aaf9b70d62fe51930408.zip |
Add FreeBSD to `host_triple`
Add FreeBSD to `host_triple` so that the correct nightly compiler will
be downloaded.
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
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" |