diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-12-19 15:42:01 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-01-06 13:49:34 -0800 |
commit | 10a560a411728f747c8394599ef95c9c8caa2086 (patch) | |
tree | b3570401de504ff39c6e68908f95941852e8e864 /mesonbuild/mesonlib.py | |
parent | 3b8e65911c3ec8dd03cc1efd1250efa5aaf98f5e (diff) | |
download | meson-10a560a411728f747c8394599ef95c9c8caa2086.zip meson-10a560a411728f747c8394599ef95c9c8caa2086.tar.gz meson-10a560a411728f747c8394599ef95c9c8caa2086.tar.bz2 |
compilers: fix unittest "16 prebuilt shared" on dragonfly bsd
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 3b32996..8793dff 100644 --- a/mesonbuild/mesonlib.py +++ b/mesonbuild/mesonlib.py @@ -285,6 +285,9 @@ def is_cygwin(): def is_debianlike(): return os.path.isfile('/etc/debian_version') +def is_dragonflybsd(): + return platform.system().lower() == 'dragonfly' + def for_windows(is_cross, env): """ Host machine is windows? |