diff options
author | Marco Trevisan (TreviƱo) <marco@ubuntu.com> | 2020-08-28 05:19:16 +0200 |
---|---|---|
committer | Ray Strode <halfline@gmail.com> | 2020-08-31 13:20:25 +0000 |
commit | 2c0177aba556085ff9e716b2bf440fe0d48ee44c (patch) | |
tree | c2c8effaebd9be7797c00b1175a38ad91190d381 /meson.build | |
parent | 5cafcd22c246291b72037a84cc894b53af9913ef (diff) | |
download | gdm-2c0177aba556085ff9e716b2bf440fe0d48ee44c.tar.gz |
meson: Fix keyutils pkg-config name
Keyutils includes a .pc file as mentioned in commit 141f8bc244, however its
name was wrongly changed from 'libkeyutils' during the meson port
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index b210a187..866e1fe9 100644 --- a/meson.build +++ b/meson.build @@ -50,7 +50,7 @@ gtk_dep = dependency('gtk+-3.0', version: '>= 2.91.1') libcanberra_gtk_dep = dependency('libcanberra-gtk3', version: '>= 0.4') accountsservice_dep = dependency('accountsservice', version: '>= 0.6.35') xcb_dep = dependency('xcb') -keyutils_dep = dependency('keyutils', required: false) +keyutils_dep = dependency('libkeyutils', required: false) libselinux_dep = dependency('libselinux', required: get_option('selinux')) # udev |