Commit edb1c662394578a54b7bbed231d918925e5d8150

Ran Benita 2018-02-14T15:07:46

build/meson: fix the -Wl,--version-script configure check Hopefully this fixes compilation on darwin, which doesn't support version scripts. Signed-off-by: Ran Benita <ran234@gmail.com>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/meson.build b/meson.build
index 5681e6f..22b33d7 100644
--- a/meson.build
+++ b/meson.build
@@ -106,7 +106,7 @@ add_project_arguments('-include', 'config.h', language: 'c')
 # Supports -Wl,--version-script?
 have_version_script = cc.links(
     'int main(){}',
-    link_args: '-Wl,--version-script=' + join_paths(meson.source_root(), 'xkbcommon.map'),
+    args: '-Wl,--version-script=' + join_paths(meson.source_root(), 'xkbcommon.map'),
     name: '-Wl,--version-script',
 )