diff options
author | Daniel Dragan <bulk88@hotmail.com> | 2013-10-19 21:26:29 -0400 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2013-10-21 18:23:16 +0100 |
commit | 72905adc0956f3ad276251c8d98e96acccb89200 (patch) | |
tree | f20a2da266ae1d7bfd52fa31340accf077559e94 | |
parent | 27329181e393b988b7745c51463210b270f51c87 (diff) | |
download | perl-72905adc0956f3ad276251c8d98e96acccb89200.tar.gz |
.gitignore Win32's miniperl object files
Comments from the committer:
win32/mini/*.obj (and hence win32/mini/ since it contains nothing other than
*.obj) should be .gitignored by the top-level .gitignore file anyway, but
git clean -dfX doesn't remove them without this patch. (git clean -dfx does,
but some developers want to keep untracked files other than build products
explicitly listed by .gitignore files.)
-rw-r--r-- | win32/.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/.gitignore b/win32/.gitignore index abffe4714e..c5fcdfc766 100644 --- a/win32/.gitignore +++ b/win32/.gitignore @@ -4,6 +4,7 @@ /perl.base bin/*.bat html/ +mini/ Extensions_static dlutils.c perllibst.h |