2020-01-15 11:34:39

by Ilie Halip

[permalink] [raw]
Subject: [PATCH] riscv: delete temporary files

Temporary files used in the VDSO build process linger on even after make
mrproper: vdso-dummy.o.tmp, vdso.so.dbg.tmp.

Delete them once they're no longer needed.

Signed-off-by: Ilie Halip <[email protected]>
---
arch/riscv/kernel/vdso/Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/riscv/kernel/vdso/Makefile b/arch/riscv/kernel/vdso/Makefile
index 49a5852fd07d..33b16f4212f7 100644
--- a/arch/riscv/kernel/vdso/Makefile
+++ b/arch/riscv/kernel/vdso/Makefile
@@ -58,7 +58,8 @@ quiet_cmd_vdsold = VDSOLD $@
cmd_vdsold = $(CC) $(KBUILD_CFLAGS) $(call cc-option, -no-pie) -nostdlib -nostartfiles $(SYSCFLAGS_$(@F)) \
-Wl,-T,$(filter-out FORCE,$^) -o [email protected] && \
$(CROSS_COMPILE)objcopy \
- $(patsubst %, -G __vdso_%, $(vdso-syms)) [email protected] $@
+ $(patsubst %, -G __vdso_%, $(vdso-syms)) [email protected] $@ && \
+ rm [email protected]

# install commands for the unstripped file
quiet_cmd_vdso_install = INSTALL $@

base-commit: dc6fcba72f0435b7884f2e92fd634bb9f78a2c60
--
2.17.1


2020-01-17 21:54:33

by Paul Walmsley

[permalink] [raw]
Subject: Re: [PATCH] riscv: delete temporary files

On Wed, 15 Jan 2020, Ilie Halip wrote:

> Temporary files used in the VDSO build process linger on even after make
> mrproper: vdso-dummy.o.tmp, vdso.so.dbg.tmp.
>
> Delete them once they're no longer needed.
>
> Signed-off-by: Ilie Halip <[email protected]>

Thanks, queued for v5.5-rc.


- Paul