From: Prarit Bhargava <[email protected]>

redhat: Test tmp file before deleting

If BTF is not enabled in the kernel config then .tmp_vmlinux.btf will not
exist.  The rpm build will throw an error because the file doesn't exist.

Test for the existence of .tmp_vmlinux.btf before deleting it.

Reported by: stan <[email protected]>
Signed-off-by: Prarit Bhargava <[email protected]>

diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template
index blahblah..blahblah 100755
--- a/redhat/kernel.spec.template
+++ b/redhat/kernel.spec.template
@@ -1683,7 +1683,10 @@ BuildKernel() {
 %endif
 
     # Remove large intermediate files we no longer need to save space
-    rm vmlinux.o .tmp_vmlinux.btf
+    rm vmlinux.o
+    if [ -f .tmp_vmlinux.btf ]; then
+           rm .tmp_vmlinux.btf
+    fi
 
     # Start installing the results
     install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135
_______________________________________________
kernel mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/[email protected]
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to