diff options
author | Junio C Hamano <junkio@cox.net> | 2006-08-08 13:42:35 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-08 17:19:28 -0700 |
commit | 1b1b678e3c4eebe0302455c248941e5627ce2b5b (patch) | |
tree | a1f54d7fafa896c3df1bfb454b24a2657084153e /Makefile | |
parent | 424adc50b73f269ac3f3bd0195f9e7fea935109f (diff) | |
download | git-1b1b678e3c4eebe0302455c248941e5627ce2b5b.tar.gz git-1b1b678e3c4eebe0302455c248941e5627ce2b5b.tar.xz |
autoconf: clean temporary file mak.append
When configure is interrupted in the middle it leaves
config.mak.append behind. Add it to .gitignore and make sure
$(MAKE) clean removes it.
Also earlier .gitignore listed config.mak.in which is a tracked
file. Fix it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -793,7 +793,7 @@ clean: rm -f $(ALL_PROGRAMS) $(BUILT_INS) git$X rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags rm -rf autom4te.cache - rm -f config.log config.mak.autogen configure config.status config.cache + rm -f configure config.log config.mak.autogen config.mak.append config.status config.cache rm -rf $(GIT_TARNAME) .doc-tmp-dir rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz rm -f $(htmldocs).tar.gz $(manpages).tar.gz |