From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefano Brivio To: passt-dev@passt.top Subject: [PATCH 12/12] fedora: Fix man pages wildcards in spec file Date: Thu, 18 Aug 2022 22:22:35 +0200 Message-ID: <20220818202235.1591828-13-sbrivio@redhat.com> In-Reply-To: <20220818202235.1591828-1-sbrivio@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0312599040905692785==" --===============0312599040905692785== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit If the man pages are not compressed, the current wildcards wouldn't match them. Drop the trailing '.' from them. Reported-by: Artur Frenszek-Iwicki Signed-off-by: Stefano Brivio --- contrib/fedora/passt.spec | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/fedora/passt.spec b/contrib/fedora/passt.spec index 0c3dec7..8bbe0d0 100644 --- a/contrib/fedora/passt.spec +++ b/contrib/fedora/passt.spec @@ -78,14 +78,14 @@ semodule -r pasta 2>/dev/null || : %{_bindir}/passt %{_bindir}/pasta %{_bindir}/qrap -%{_mandir}/man1/passt.1.* -%{_mandir}/man1/pasta.1.* -%{_mandir}/man1/qrap.1.* +%{_mandir}/man1/passt.1* +%{_mandir}/man1/pasta.1* +%{_mandir}/man1/qrap.1* %ifarch x86_64 %{_bindir}/passt.avx2 -%{_mandir}/man1/passt.avx2.1.* +%{_mandir}/man1/passt.avx2.1* %{_bindir}/pasta.avx2 -%{_mandir}/man1/pasta.avx2.1.* +%{_mandir}/man1/pasta.avx2.1* %endif %files selinux -- 2.35.1 --===============0312599040905692785==--