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:
Benjamin Berg 2020-03-20 11:59:58 +01:00
parent bd4f118b5e
commit 96fba323b9

View file

@ -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)