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 /.gitignore | |
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 '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index fb0fa3f16..6e973b3d4 100644 --- a/.gitignore +++ b/.gitignore @@ -140,7 +140,7 @@ config.mak autom4te.cache config.log config.status -config.mak.in config.mak.autogen +config.mak.append configure git-blame |