From 85b9368c48cb8177b44bb378d8b5d6800d7b4614 Mon Sep 17 00:00:00 2001 From: Dominique Martinet Date: Thu, 4 Jan 2018 23:38:15 +0100 Subject: [PATCH] meson: fix include path in generated .pc The generated .pc still contained -I${prefix}/wlroots, this is no longer needed at all as the prefix is now 'wlr' and all includes are 'wlr/foo' --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index f6ffff40..aee4b11b 100644 --- a/meson.build +++ b/meson.build @@ -159,7 +159,6 @@ subdir('examples') pkgconfig = import('pkgconfig') pkgconfig.generate( libraries: lib_wlr, - subdirs: '@0@'.format(meson.project_name()), version: meson.project_version(), filebase: meson.project_name(), name: meson.project_name(),