meson: Fix linking issue of libfprint with newer gcc
It appears the order of linking is relevant in this case, change it to fix some linking issues. It may be that there are better solutions to this problem.
This commit is contained in:
parent
bd4f118b5e
commit
96fba323b9
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ libfprint = library(versioned_libname.split('lib')[1],
|
|||
version: libversion,
|
||||
link_args : vflag,
|
||||
link_depends : mapfile,
|
||||
link_with: [libfprint_private, libfprint_drivers],
|
||||
link_with: [libfprint_drivers, libfprint_private],
|
||||
dependencies: deps,
|
||||
install: true)
|
||||
|
||||
|
|
Loading…
Reference in a new issue