Skip to content

Commit 98836a8

Browse files
ramsay-jonesgitster
authored andcommitted
Makefile: don't try to clean old debian build product
The 'clean' target includes code to remove an '*.tar.gz' file that was the by-product of a debian build. This was originally added by commit 5a571cd (Clean generated files a bit more, to cope with Debian build droppings., 2005-08-12). However, all support for the 'debian build' was dropped by commit 7d0e65b (Retire debian/ directory., 2006-01-06), which seems to have simply forgotten to remove the 'git-core_$(GIT_VERSION)-*.tar.gz' from the 'clean' target. Remove it now. Signed-off-by: Ramsay Jones <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent e3a9237 commit 98836a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3159,7 +3159,7 @@ clean: profile-clean coverage-clean cocciclean
31593159
$(RM) -r po/build/
31603160
$(RM) *.pyc *.pyo */*.pyc */*.pyo $(GENERATED_H) $(ETAGS_TARGET) tags cscope*
31613161
$(RM) -r $(GIT_TARNAME) .doc-tmp-dir
3162-
$(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
3162+
$(RM) $(GIT_TARNAME).tar.gz
31633163
$(RM) $(htmldocs).tar.gz $(manpages).tar.gz
31643164
$(MAKE) -C Documentation/ clean
31653165
$(RM) Documentation/GIT-EXCLUDED-PROGRAMS

0 commit comments

Comments
 (0)