diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2018-01-04 23:38:15 +0100 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2018-01-04 23:41:44 +0100 |
commit | 85b9368c48cb8177b44bb378d8b5d6800d7b4614 (patch) | |
tree | 466b32461dcb2ab15dd6071652504d885b6145b7 | |
parent | ce3a48c3169abf6c76a6aa4ce1ba0f81d0071bff (diff) | |
download | wlroots-85b9368c48cb8177b44bb378d8b5d6800d7b4614.tar.xz |
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'
-rw-r--r-- | meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
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(), |