diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-12-21 13:33:57 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-01-06 13:49:34 -0800 |
commit | 660dee1e10b5293c38d372b7a8ddfce49cc14936 (patch) | |
tree | 14ebc31da538ed2d21020e8a724366cc3e3b8825 /mesonbuild/mesonlib.py | |
parent | 4cea88c2bb9be96e9cd099828cdd6ff755d6d57a (diff) | |
download | meson-660dee1e10b5293c38d372b7a8ddfce49cc14936.zip meson-660dee1e10b5293c38d372b7a8ddfce49cc14936.tar.gz meson-660dee1e10b5293c38d372b7a8ddfce49cc14936.tar.bz2 |
LLVM: use DragonFly BSD workaround on FreeBSD as well
Diffstat (limited to 'mesonbuild/mesonlib.py')
-rw-r--r-- | mesonbuild/mesonlib.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py index 8793dff..b7d2992 100644 --- a/mesonbuild/mesonlib.py +++ b/mesonbuild/mesonlib.py @@ -288,6 +288,9 @@ def is_debianlike(): def is_dragonflybsd(): return platform.system().lower() == 'dragonfly' +def is_freebsd(): + return platform.system().lower() == 'freebsd' + def for_windows(is_cross, env): """ Host machine is windows? |