diff options
author | zhuyaliang <[email protected]> | 2023-07-13 15:45:59 +0800 |
---|---|---|
committer | Luke from DC <[email protected]> | 2023-07-13 16:29:52 +0000 |
commit | b4ce5ae43ec16541656be4acdd3ead4e45515b76 (patch) | |
tree | 3bda2212873644226518454dddac6176c7b4789b | |
parent | aa2e7876d6c1518e2a2419755e9d618e9be61ec6 (diff) | |
download | libmatekbd-b4ce5ae43ec16541656be4acdd3ead4e45515b76.tar.bz2 libmatekbd-b4ce5ae43ec16541656be4acdd3ead4e45515b76.tar.xz |
Fix pkg-config --libs libmatekbdui errors
https://github.com/mate-desktop/mate-control-center/issues/707
-rw-r--r-- | libmatekbd/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libmatekbd/meson.build b/libmatekbd/meson.build index 675920e..08b93c2 100644 --- a/libmatekbd/meson.build +++ b/libmatekbd/meson.build @@ -56,6 +56,7 @@ pkg.generate( libmatekbd_lib, name: 'libmatekbd', description: 'MATE keyboard shared library', + requires: libmatekbd_deps, version: meson.project_version(), ) @@ -119,6 +120,7 @@ pkg.generate( name: 'libmatekbdui', description: 'MATE keyboard shared library', version: meson.project_version(), + requires: libmatekbd_lib, ) libmatekbdui_dep = declare_dependency( |