From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yann E. MORIN Date: Tue, 18 May 2021 22:31:25 +0200 Subject: [Buildroot] [git commit] Makefile: remove pkg-stats data on clean Message-ID: <20210518200249.B06B987D7E@busybox.osuosl.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net commit: https://git.buildroot.net/buildroot/commit/?id=3ae38ddea2bd84a3a43fea38a17de197d2f17b52 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master Like commit 1f187371d002 for cpe-updates data, also remove pkg-stats data on clean. Unlike the rest, those are not nicely located in a directory of their own, and have no variable name associated with them, so we just need to repeat their names in the clean rule. Signed-off-by: Yann E. MORIN Cc: Thomas Petazzoni Cc: Matthew Weber Reviewed-by: Thomas Petazzoni Signed-off-by: Yann E. MORIN --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c3305f46e9..9d2c0d8ecb 100644 --- a/Makefile +++ b/Makefile @@ -1089,7 +1089,8 @@ printvars: clean: rm -rf $(BASE_TARGET_DIR) $(BINARIES_DIR) $(HOST_DIR) $(HOST_DIR_SYMLINK) \ $(BUILD_DIR) $(BASE_DIR)/staging \ - $(LEGAL_INFO_DIR) $(GRAPHS_DIR) $(PER_PACKAGE_DIR) $(CPE_UPDATES_DIR) + $(LEGAL_INFO_DIR) $(GRAPHS_DIR) $(PER_PACKAGE_DIR) $(CPE_UPDATES_DIR) \ + $(O)/pkg-stats.* .PHONY: distclean distclean: clean