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 <jnovy@redhat.com>
This commit is contained in:
Jindrich Novy 2026-02-27 07:26:13 +01:00
parent 7ad5fc0512
commit c6c8dce63e

View File

@ -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 <jnovy@redhat.com> - 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 <jnovy@redhat.com> - 1.26-1
- update to https://github.com/containers/crun/releases/tag/1.26
- Resolves: RHEL-114419