!23 [sync] PR-20: use correct build flags

From: @openeuler-sync-bot 
Reviewed-by: @wk333 
Signed-off-by: @wk333
This commit is contained in:
openeuler-ci-bot 2024-09-02 02:06:27 +00:00 committed by Gitee
commit eddb234f58
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -1,10 +1,8 @@
#%global debug_package %{nil}
Name: p7zip
Version: 16.02
Release: 5
Release: 6
Summary: 7z for Linux system
License: GPLv2
License: LGPLv2 and (LGPLv2+ or CPL)
URL: https://sourceforge.net/projects/p7zip/
Source0: https://sourceforge.net/projects/p7zip/files/p7zip/%{version}/%{name}_%{version}_src_all.tar.bz2
Patch0: CVE-2017-17969.patch
@ -14,7 +12,7 @@ Patch3: CVE-2018-10115.patch
Patch4: fix-build-failed-with-gcc-10.patch
Patch5: 0001-add-PIE-compiler-options.patch
BuildRequires: gcc gcc-c++
BuildRequires: gcc-c++
%description
7za for Linux system to archive file as 7z file format
@ -23,7 +21,10 @@ BuildRequires: gcc gcc-c++
%autosetup -n %{name}_%{version} -p1
%build
%make_build
%make_build OPTFLAGS="%{build_cxxflags}" LDFLAGS="%{build_ldflags}"
%check
%make_build test OPTFLAGS="%{build_cxxflags}" LDFLAGS="%{build_ldflags}"
%install
#
@ -34,13 +35,6 @@ install -d %{buildroot}/%{_mandir}/man1
install -m 0755 bin/7za %{buildroot}/%{_bindir}/
install -m 0644 man1/7za.1 %{buildroot}/%{_mandir}/man1
%pre
%preun
%post
%postun
%check
%files
%license DOC/License.txt
%doc README
@ -48,6 +42,9 @@ install -m 0644 man1/7za.1 %{buildroot}/%{_mandir}/man1
%{_mandir}/*
%changelog
* Sat Aug 31 2024 Funda Wang <fundawang@yeah.net> - 16.02-6
- use correct build flags
* Tue Jun 06 2023 chenchen <chen_aka_jan@163.com> - 16.02-5
- add PIE compiler options