From 8b408694b07b9ba11da1799a772db67a28b584bd Mon Sep 17 00:00:00 2001 From: Stephan Lachnit Date: Wed, 17 Jun 2020 11:58:20 +0200 Subject: [PATCH] improve libgamemodeauto pkg-config file Rename the pkg-config entry for libgamemodeauto, to it make it more that this will link against a library, compared to what the `gamemode` pkg-config does. This also removes the manual addition of the libdl dependency, this is done by Meson automatically. Signed-off-by: Stephan Lachnit --- lib/meson.build | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lib/meson.build b/lib/meson.build index 8aa5103..e810509 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -62,14 +62,11 @@ pkg.generate( ) pkg.generate( - name: 'gamemode', + name: 'libgamemodeauto', description: desc, - filebase: 'gamemode-auto', - libraries: gamemodeauto, + filebase: 'libgamemodeauto', + libraries: libgamemodeauto, version: meson.project_version(), - libraries_private: [ - libdl - ], ) # Dependency objects