From fcc5d2b0974b0d7b9fc7f0ac3633b4a2403c6b48 Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Thu, 6 Jun 2019 11:06:43 +0300 Subject: [PATCH] Really enable annocheck sub-package Commit 4656334c922c0e00e8b53bbdf04e43e083bd8616 supposedly added annocheck as a sub-package but is missing the corresponding %files section, which causes the whole sub-package to be ignored and annocheck ending up in the main annobin package. Which creates a nasty "bootstrap" dependency issue for compilation when rpm soname changes. --- annobin.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/annobin.spec b/annobin.spec index d56e925..83331b5 100644 --- a/annobin.spec +++ b/annobin.spec @@ -16,7 +16,7 @@ Name: annobin Summary: Binary annotation plugin for GCC Version: 8.76 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv3+ URL: https://fedoraproject.org/wiki/Toolchain/Watermark @@ -206,6 +206,7 @@ fi %doc %{_mandir}/man1/run-on-binaries-in.1.gz %if %{with annocheck} +%files annocheck %{_bindir}/annocheck %doc %{_mandir}/man1/annocheck.1.gz %endif @@ -213,6 +214,9 @@ fi #--------------------------------------------------------------------------------- %changelog +* Thu Jun 06 2019 Panu Matilainen - 8.76-2 +- Really enable annocheck sub-package + * Tue Apr 30 2019 Nick Clifton - 8.76-1 - Report a missing -D_FORTIFY_SOUCRE option if -D_GLIBCXX_ASSERTIONS was detected. (#1703499) - Do not report problems with -fstack-protection if the binary was not built by gcc or clang. (#1703788)