From e5bd0a1b362ecc4bcd03a4d3628c7e78f861f3ca Mon Sep 17 00:00:00 2001 From: Ramsay Jones Date: Sat, 8 May 2010 18:36:15 +0100 Subject: [PATCH] Makefile: Fix 'clean' target to remove all gitweb build files In particular the gitweb/GITWEB-BUILD-OPTIONS file was not being removed by the main Makefile. However, the gitweb/Makefile has a 'clean' target that correctly removes all the build products. In order to fix the problem, rather than duplicate the clean-up instructions, we change the main Makefile so that it delegates the clean-up actions to the gitweb Makefile. Signed-off-by: Ramsay Jones Acked-by: Jakub Narebski Signed-off-by: Junio C Hamano --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 910f4713ef..eb1d1623c2 100644 --- a/Makefile +++ b/Makefile @@ -2098,7 +2098,7 @@ clean: $(RM) $(htmldocs).tar.gz $(manpages).tar.gz $(MAKE) -C Documentation/ clean ifndef NO_PERL - $(RM) gitweb/gitweb.cgi gitweb/gitweb.min.* + $(MAKE) -C gitweb clean $(MAKE) -C perl clean endif ifndef NO_PYTHON -- 2.11.4.GIT