From c7eedefae383fe870806c3fdd214c59b56d19492 Mon Sep 17 00:00:00 2001 From: whzhe Date: Fri, 19 Mar 2021 10:16:05 +0800 Subject: [PATCH] fix local compile error (cherry picked from commit 40c412f07baf55979d4c5de71ec5a252bbaec344) --- secGear.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/secGear.spec b/secGear.spec index 491b1d7..5df139f 100644 --- a/secGear.spec +++ b/secGear.spec @@ -1,6 +1,6 @@ Name: secGear Version: 0.1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: secGear is an SDK to develop confidential computing apps based on hardware enclave features ExclusiveArch: x86_64 @@ -87,8 +87,10 @@ install -pm 644 inc/host_inc/gp/*.h %{buildroot}/%{_includedir}/secGear install -pm 644 inc/enclave_inc/*.h %{buildroot}/%{_includedir}/secGear install -pm 644 inc/enclave_inc/gp/*.h %{buildroot}/%{_includedir}/secGear %endif - -rm %{buildroot}/home* -rf +pushd %{buildroot} +rm `find . -name secgear_helloworld` -rf +rm `find . -name secgear_seal_data` -rf +popd %files %defattr(-,root,root) @@ -116,6 +118,9 @@ rm %{buildroot}/home* -rf %endif %changelog +* Thu Mar 19 2021 wanghongzhe - 0.1.0-9 +- DESC: fix local compile error + * Thu Mar 18 2021 gaoyusong - 0.1.0-8 - DESC: backport patch -- Gitee