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 <ilie.halip@gmail.com>
Signed-off-by: Paul Walmsley <paul.walmsley@sifive.com>

authored by Ilie Halip and committed by Paul Walmsley 95f4d9cc 20d22927

Changed files
+2 -1
arch
riscv
kernel
vdso
+2 -1
arch/riscv/kernel/vdso/Makefile
··· 58 58 cmd_vdsold = $(CC) $(KBUILD_CFLAGS) $(call cc-option, -no-pie) -nostdlib -nostartfiles $(SYSCFLAGS_$(@F)) \ 59 59 -Wl,-T,$(filter-out FORCE,$^) -o $@.tmp && \ 60 60 $(CROSS_COMPILE)objcopy \ 61 - $(patsubst %, -G __vdso_%, $(vdso-syms)) $@.tmp $@ 61 + $(patsubst %, -G __vdso_%, $(vdso-syms)) $@.tmp $@ && \ 62 + rm $@.tmp 62 63 63 64 # install commands for the unstripped file 64 65 quiet_cmd_vdso_install = INSTALL $@