From c6c8dce63ed56064150872041f8f3a4759e10294 Mon Sep 17 00:00:00 2001 From: Jindrich Novy Date: Fri, 27 Feb 2026 07:26:13 +0100 Subject: [PATCH] crun-1.26-2.el10 - use %%configure macro instead of ./configure to inject RPM hardening flags (stack protector, FORTIFY_SOURCE) - Resolves: RHEL-152226 Signed-off-by: Jindrich Novy --- crun.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/crun.spec b/crun.spec index 2a59601..4a1bd12 100644 --- a/crun.spec +++ b/crun.spec @@ -43,7 +43,7 @@ Epoch: 102 # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. Version: 1.26 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://github.com/containers/%{name} Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.zst License: GPL-2.0-only @@ -112,7 +112,7 @@ Recommends: wasmedge %build ./autogen.sh -./configure --disable-silent-rules %{krun_opts} %{wasmedge_opts} %{yajl_opts} +%configure --disable-silent-rules %{krun_opts} %{wasmedge_opts} %{yajl_opts} %make_build %install @@ -141,6 +141,11 @@ rm -rf %{buildroot}%{_prefix}/lib* %endif %changelog +* Fri Feb 27 2026 Jindrich Novy - 1.26-2 +- use %%configure macro instead of ./configure to inject RPM hardening flags + (stack protector, FORTIFY_SOURCE) +- Resolves: RHEL-152226 + * Wed Jan 21 2026 Jindrich Novy - 1.26-1 - update to https://github.com/containers/crun/releases/tag/1.26 - Resolves: RHEL-114419