Re: [PATCH V4] tools/perf: Add perf binary dependent rule for shellcheck log in Makefile.perf
From: Arnaldo Carvalho de Melo <acme@kernel.org>
Date: 2023-12-06 12:29:45
Also in:
linux-perf-users
Em Tue, Dec 05, 2023 at 02:09:01PM -0800, Ian Rogers escreveu:
On Tue, Dec 5, 2023 at 1:50 PM Arnaldo Carvalho de Melo [off-list ref] wrote:quoted
Em Mon, Nov 27, 2023 at 11:12:57AM +0000, James Clark escreveu:quoted
On 23/11/2023 16:02, Athira Rajeev wrote:quoted
--- a/tools/perf/Makefile.perf@@ -1134,6 +1152,7 @@ bpf-skel-clean: $(call QUIET_CLEAN, bpf-skel) $(RM) -r $(SKEL_TMP_OUT) $(SKELETONS) clean:: $(LIBAPI)-clean $(LIBBPF)-clean $(LIBSUBCMD)-clean $(LIBSYMBOL)-clean $(LIBPERF)-clean fixdep-clean python-clean bpf-skel-clean tests-coresight-targets-clean + $(Q)$(MAKE) -f $(srctree)/tools/perf/tests/Makefile.tests clean $(call QUIET_CLEAN, core-objs) $(RM) $(LIBPERF_A) $(OUTPUT)perf-archive $(OUTPUT)perf-iostat $(LANG_BINDINGS) $(Q)find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete $(Q)$(RM) $(OUTPUT).config-detectedWhile merging perf-tools-next with torvalds/master I noticed that maybe we better have the above added line as: + $(call QUIET_CLEAN, tests) $(Q)$(MAKE) -f $(srctree)/tools/perf/tests/Makefile.tests clean No? Anyway I'm merging as-is, but it just hit my eye while merging, - ArnaldoMakefile.tests was removed in these recent patches adding support for the OUTPUT directory: https://lore.kernel.org/lkml/9C33887F-8A88-4973-8593-7936E36AFCE1@linux.vnet.ibm.com/ (local)
Right, I made a mistake and was doing the merge on a different branch, now that I tried it on my latest perf-tools-next local branch all is well and the other merge conflict gets auto-resolved (arm64-sysreg-defs-clean stuff in tools/perf/Makefile.perf "clean" target). Thanks for checking, - Arnaldo