diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-04-08 19:17:20 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-04-08 19:20:28 +0300 |
commit | cd558bfba9005d6214c4a1a2e2564080022128b1 (patch) | |
tree | df040b4aea8e666f8032c97c289ae9f515ab54ef /sal | |
parent | 7f8d611b9fab034ed13202bcc41ff5ef0270c198 (diff) |
GNU Make's filter-out is hard to use
Change-Id: I99ec6176c0876b948e35880f02d54905d26e7280
Diffstat (limited to 'sal')
-rw-r--r-- | sal/Library_sal.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/Library_sal.mk b/sal/Library_sal.mk index 0489e10a0e52..d6b6db9dedf9 100644 --- a/sal/Library_sal.mk +++ b/sal/Library_sal.mk @@ -57,7 +57,7 @@ $(eval $(call gb_Library_use_system_win32_libs,sal,\ )) $(eval $(call gb_Library_add_libs,sal,\ - $(if $(filter-out $(OS),WNT HAIKU), \ + $(if $(filter-out WNT HAIKU,$(OS)), \ $(if $(filter $(OS),ANDROID),, \ -lpthread \ ) \ |