On Sun 29 May 2022 00:47:02 +0900, Masahiro Yamada wrote: > Change the "make clean" rule to remove all the .tmp_* files. > > .tmp_objdiff is the only exception, which should be removed by > "make mrproper". > > Rename the record directory of objdiff, .tmp_objdiff to .objdiff to > avoid the removal by "make clean". > > Signed-off-by: Masahiro Yamada <masahiroy@xxxxxxxxxx> > --- > > Makefile | 4 ++-- > scripts/link-vmlinux.sh | 3 --- > scripts/objdiff | 2 +- > 3 files changed, 3 insertions(+), 6 deletions(-) > ... > diff --git a/scripts/objdiff b/scripts/objdiff > index 72b0b63c3fe1..68b8d74e5c6f 100755 > --- a/scripts/objdiff > +++ b/scripts/objdiff > @@ -32,7 +32,7 @@ if [ -z "$SRCTREE" ]; then > exit 1 > fi > > -TMPD=$SRCTREE/.tmp_objdiff > +TMPD=$SRCTREE/.objdiff > > usage() { > echo >&2 "Usage: $0 <command> <args>" scripts/objdiff still has two occurrences of .tmp_objdiff (in the comment block at the top).