From 1926db32ffbd97e1797d15ec73b95e190eea2c0a Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Wed, 4 Aug 2021 13:34:31 +0100 Subject: [PATCH] add apr_common.m4 to -devel as well (#1986937) Resolves: rhbz#1986937 --- apr.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/apr.spec b/apr.spec index 3b1e068..821dc34 100644 --- a/apr.spec +++ b/apr.spec @@ -6,7 +6,7 @@ Summary: Apache Portable Runtime library Name: apr Version: 1.7.0 -Release: 9.3%{?dist} +Release: 9.4%{?dist} # ASL 2.0: everything # ISC: network_io/apr-1.4.6/network_io/unix/inet_?to?.c # BSD with advertising: strings/apr_snprintf.c, strings/apr_fnmatch.c, @@ -70,7 +70,9 @@ rm -rf $RPM_BUILD_ROOT %{make_install} mkdir -p $RPM_BUILD_ROOT/%{_datadir}/aclocal -install -m 644 build/find_apr.m4 $RPM_BUILD_ROOT/%{_datadir}/aclocal +for f in find_apr.m4 apr_common.m4; do + install -p -m 644 build/$f $RPM_BUILD_ROOT/%{_datadir}/aclocal +done # Trim exported dependecies sed -ri '/^dependency_libs/{s,-l(uuid|crypt) ,,g}' \ @@ -133,6 +135,9 @@ popd %{_datadir}/aclocal/*.m4 %changelog +* Wed Aug 4 2021 Joe Orton - 1.7.0-9.4 +- add apr_common.m4 to -devel as well (#1986937) + * Wed Jul 7 2021 Joe Orton - 1.7.0-9.3 - add various Coverity/Clang cleanups (#1977418)