mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-05-05 09:58:22 +02:00
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>
This commit is contained in:
parent
ec27aa3a78
commit
96b885c29a
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue