summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-06-23 15:13:20 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-06-26 18:43:21 +1000
commit96b885c29a34081654617bdc6d4af6c41ada6e4a (patch)
tree655b856d693a61e2a459d7c8062d32bb135e78d2
parentec27aa3a78c549a78f97bab180e65ddbc23822c6 (diff)
meson: swap libinput dependencies
Since meson commit ae9b238 "ninja: De-dup libraries and use --start/end-group" we get linker errors with the tools. The duplication is apparently a bit too agressive, swapping the order here make sure libinput isn't removed. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reported-by: Michel Dänzer <michel@daenzer.net> Tested-by: Michel Dänzer <michel.daenzer@amd.com>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index e77f7d1..e122dd9 100644
--- a/meson.build
+++ b/meson.build
@@ -357,7 +357,7 @@ lib_tools_shared = static_library('tools_shared',
dep_tools_shared = declare_dependency(link_with : lib_tools_shared,
dependencies : deps_tools_shared)
-deps_tools = [ dep_libinput, dep_tools_shared ]
+deps_tools = [ dep_tools_shared, dep_libinput ]
libinput_debug_events_sources = [ 'tools/libinput-debug-events.c' ]
executable('libinput-debug-events',
libinput_debug_events_sources,