[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <165282611848.4207.8215505152324998987.tip-bot2@tip-bot2>
Date: Tue, 17 May 2022 22:21:58 -0000
From: "tip-bot2 for Tiezhu Yang" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Tiezhu Yang <yangtiezhu@...ngson.cn>,
Josh Poimboeuf <jpoimboe@...nel.org>, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject: [tip: objtool/core] objtool: Remove inat-tables.c when make clean
The following commit has been merged into the objtool/core branch of tip:
Commit-ID: f193c32cad2ddc79ad55a2e2fb3bc35e7d92946a
Gitweb: https://git.kernel.org/tip/f193c32cad2ddc79ad55a2e2fb3bc35e7d92946a
Author: Tiezhu Yang <yangtiezhu@...ngson.cn>
AuthorDate: Wed, 11 May 2022 16:37:49 +08:00
Committer: Josh Poimboeuf <jpoimboe@...nel.org>
CommitterDate: Thu, 12 May 2022 07:28:05 -07:00
objtool: Remove inat-tables.c when make clean
When build objtool on x86, the generated file inat-tables.c is in
arch/x86/lib instead of arch/x86, use the correct dir to remove it
when make clean.
$ cd tools/objtool
$ make
[...]
GEN arch/x86/lib/inat-tables.c
[...]
Signed-off-by: Tiezhu Yang <yangtiezhu@...ngson.cn>
Signed-off-by: Josh Poimboeuf <jpoimboe@...nel.org>
Link: https://lore.kernel.org/r/1652258270-6278-2-git-send-email-yangtiezhu@loongson.cn
---
tools/objtool/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/objtool/Makefile b/tools/objtool/Makefile
index 061cf1c..8a90763 100644
--- a/tools/objtool/Makefile
+++ b/tools/objtool/Makefile
@@ -63,7 +63,7 @@ $(LIBSUBCMD): fixdep FORCE
clean:
$(call QUIET_CLEAN, objtool) $(RM) $(OBJTOOL)
$(Q)find $(OUTPUT) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
- $(Q)$(RM) $(OUTPUT)arch/x86/inat-tables.c $(OUTPUT)fixdep
+ $(Q)$(RM) $(OUTPUT)arch/x86/lib/inat-tables.c $(OUTPUT)fixdep
FORCE:
Powered by blists - more mailing lists