From 8b1762e9545628a61fa1dfb389946ce2a7d6d6ce Mon Sep 17 00:00:00 2001 From: Lubos Kardos Date: Mon, 1 Feb 2016 16:17:46 +0100 Subject: [PATCH] - Harden rpm package again, previous attempt had to be reverted - Resolves: #1289734 --- rpm.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/rpm.spec b/rpm.spec index 7c99fb9..a273363 100644 --- a/rpm.spec +++ b/rpm.spec @@ -29,7 +29,7 @@ Summary: The RPM package management system Name: rpm Version: %{rpmver} -Release: %{?snapver:0.%{snapver}.}21%{?dist} +Release: %{?snapver:0.%{snapver}.}22%{?dist} Group: System Environment/Base Url: http://www.rpm.org/ Source0: http://rpm.org/releases/rpm-4.12.x/%{name}-%{srcver}.tar.bz2 @@ -329,10 +329,16 @@ ln -s db-%{bdbver} db %endif CPPFLAGS="$CPPFLAGS `pkg-config --cflags nss` -DLUA_COMPAT_APIINTCASTS" CFLAGS="$RPM_OPT_FLAGS %{?sanitizer_flags} -DLUA_COMPAT_APIINTCASTS" +LDFLAGS="$LDFLAGS %{?__global_ldflags}" export CPPFLAGS CFLAGS LDFLAGS autoreconf -i -f +# Hardening hack taken from macro %%configure defined in redhat-rpm-config +for i in $(find . -name ltmain.sh) ; do + %{__sed} -i.backup -e 's~compiler_flags=$~compiler_flags="%{_hardened_ldflags}"~' $i +done; + # Using configure macro has some unwanted side-effects on rpm platform # setup, use the old-fashioned way for now only defining minimal paths. ./configure \ @@ -571,6 +577,9 @@ exit 0 %doc doc/librpm/html/* %changelog +* Mon Feb 01 2016 Lubos Kardos - 4.13.0-0.rc1.22 +- Harden rpm package again, previous attempt had to be reverted (#1289734) + * Mon Feb 01 2016 Lubos Kardos - 4.13.0-0.rc1.21 - Remove setting %%_gnu macro explictly, no more needed (#1303265)