From f0cbca6acab6212eb115829c1828416355f12312 Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Tue, 24 Jan 2023 21:17:36 +0000 Subject: [PATCH] Fix systemd BuildRequires The build looks for both libsystemd.pc (in systemd-devel, for compile and link flags) and systemd.pc (in systemd itself, for directory layout). systemd-devel previously pulled in systemd (indirectly, through systemd-pam), but no longer. --- fprintd.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fprintd.spec b/fprintd.spec index 4ec0eff..a5667ca 100644 --- a/fprintd.spec +++ b/fprintd.spec @@ -18,7 +18,8 @@ BuildRequires: polkit-devel BuildRequires: gtk-doc BuildRequires: gettext BuildRequires: perl-podlators -BuildRequires: systemd-devel +BuildRequires: pkgconfig(libsystemd) +BuildRequires: pkgconfig(systemd) BuildRequires: python3-dbusmock BuildRequires: python3-libpamtest