Message ID | 20200115113243.23096-1-ilie.halip@gmail.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
Series | riscv: delete temporary files | expand |
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 <ilie.halip@gmail.com> Thanks, queued for v5.5-rc. - Paul
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 $@.tmp && \ $(CROSS_COMPILE)objcopy \ - $(patsubst %, -G __vdso_%, $(vdso-syms)) $@.tmp $@ + $(patsubst %, -G __vdso_%, $(vdso-syms)) $@.tmp $@ && \ + rm $@.tmp # install commands for the unstripped file quiet_cmd_vdso_install = INSTALL $@
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 <ilie.halip@gmail.com> --- arch/riscv/kernel/vdso/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) base-commit: dc6fcba72f0435b7884f2e92fd634bb9f78a2c60