From fe72400bad1c8960da431ca9c8776d142f8c2f70 Mon Sep 17 00:00:00 2001 From: Scott Moreau Date: Mon, 18 Nov 2019 18:26:10 -0700 Subject: [PATCH] build: Pass library as first argument to pkgconfig.generate() Eliminates this warning when building wlroots as a subproject: subprojects/wlroots/meson.build:216: DEPRECATION: Library wlroots was passed to the libraries keyword argument of a previous call to generate() method instead of first positional argument. Adding wlroots to Requires field, but this is a deprecated behaviour that will change in a future version of Meson. Please report the issue if this warning cannot be avoided in your case. --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 473f49e3..7e8305b7 100644 --- a/meson.build +++ b/meson.build @@ -213,8 +213,7 @@ message('\n'.join(summary)) subdir('examples') pkgconfig = import('pkgconfig') -pkgconfig.generate( - libraries: lib_wlr, +pkgconfig.generate(lib_wlr, version: meson.project_version(), filebase: meson.project_name(), name: meson.project_name(),