"gelf_*.3*" is the glob intended to include all gelf man pages in %files. Man page gelf.3 was recently added and does not match the glob. Fix this by also including "gelf.3*" in %files.
Signed-off-by: Aaron Merey <[email protected]> --- config/elfutils.spec.in | 1 + 1 file changed, 1 insertion(+) diff --git a/config/elfutils.spec.in b/config/elfutils.spec.in index afbed0cd..84a9f51a 100644 --- a/config/elfutils.spec.in +++ b/config/elfutils.spec.in @@ -326,6 +326,7 @@ fi %{_mandir}/man3/elf_*.3* %{_mandir}/man3/elf32_*.3* %{_mandir}/man3/elf64_*.3* +%{_mandir}/man3/gelf.3* %{_mandir}/man3/gelf_*.3* %{_mandir}/man3/libelf.3* -- 2.53.0
