From: "Steven Rostedt (VMware)" <rostedt@xxxxxxxxxxx> The files "build_prefix" is used to help know if the libtracefs.pc file needs to be updated or not. If a remote directory is used, it is built in that directory. It should also be cleaned if a make clean is done on that directory as well. Currently deleting that file is missing from the make clean. Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cd7cf28a2acd..544684c1c37c 100644 --- a/Makefile +++ b/Makefile @@ -381,6 +381,7 @@ clean: $(Q)$(call do_clean, \ $(TARGETS) $(bdir)/*.a $(bdir)/*.so $(bdir)/*.so.* $(bdir)/*.o $(bdir)/.*.d \ $(PKG_CONFIG_FILE) \ - $(VERSION_FILE)) + $(VERSION_FILE) \ + $(BUILD_PREFIX)) .PHONY: clean -- 2.33.0