From d64cf9d9de388b60bec5e063ac81c941f6f017f8 Mon Sep 17 00:00:00 2001 From: markeryang Date: Wed, 12 Feb 2025 02:51:43 +0000 Subject: [PATCH] support for i686 architecture --- bzip2.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bzip2.spec b/bzip2.spec index adc699d..6355aa0 100644 --- a/bzip2.spec +++ b/bzip2.spec @@ -1,6 +1,6 @@ Name: bzip2 Version: 1.0.8 -Release: 7 +Release: 8 Summary: A high-quality data compressor License: BSD @@ -58,7 +58,9 @@ rm -rf %RPM_BUILD_ROOT pushd %{buildroot}%{_prefix} mkdir -p share mv man/ share/ +%ifnarch i686 mv lib lib64 +%endif popd ln -fs bzdiff %{buildroot}%{_bindir}/bzcmp @@ -100,6 +102,9 @@ make check %{_mandir}/man1/b*.1.gz %changelog +* Wed Feb 12 2025 yanglongkang - 1.0.8-8 +- support for i686 architecture + * Fri Apr 19 2024 zhoupengcheng - 1.0.8-7 - license and version print should output to stdout and exit with code -- Gitee