From: Prarit Bhargava <[email protected]>

redhat: Force remove tmp file

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.

Use 'rm -f' to delete the .tmp_vmlinux.btf file.

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,8 @@ BuildKernel() {
 %endif
 
     # Remove large intermediate files we no longer need to save space
-    rm vmlinux.o .tmp_vmlinux.btf
+    # (-f required for zfcpdump builds that do not enable BTF)
+    rm -f vmlinux.o .tmp_vmlinux.btf
 
     # 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