diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-08-15 19:34:31 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-08-15 19:34:56 +0530 |
commit | 2a452f2a5dee43fee594b74b15cf94d9a45c6b32 (patch) | |
tree | 9d80c792687810722526514acdbedf5387d9295e | |
parent | 6ff5eb44cb6d85a7349c2ae45e7e4577fee9b08c (diff) |
meson: Fix shm librt dep check on macOS, iOS, and *BSD
-rw-r--r-- | sys/shm/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/shm/meson.build b/sys/shm/meson.build index 6f573cfbf..a64d7a680 100644 --- a/sys/shm/meson.build +++ b/sys/shm/meson.build @@ -11,7 +11,7 @@ if get_option('shm').disabled() endif shm_deps = [] -if ['osx', 'bsd'].contains(host_system) +if host_system == 'darwin' or host_system.contains('bsd') rt_dep = [] shm_enabled = true else |