diff options
author | Peter Portante <peter.portante@redhat.com> | 2012-11-15 17:36:13 -0500 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-11-21 14:18:45 -0800 |
commit | 94ddaecadbb12c5e67617553b067554a657980a1 (patch) | |
tree | 67ece138a58ac3e6892944c1bc5cf4cabc42f682 /.gitignore | |
parent | d8fbd9ec2a674c5bfa80d975dfb328674053f82f (diff) |
Don't ignore all files that match (*o|*la|*lo)
This has been hiding files in my tree, in particular, new directories that end
with an "o". I am guessing here that these are really trying to just ignore
.o, .la and .lo files.
Change-Id: Ic438ca5c43188a63e9840512825f9ba05c359eeb
Signed-off-by: Peter Portante <peter.portante@redhat.com>
Reviewed-on: http://review.gluster.org/4195
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Pete Zaitcev <zaitcev@redhat.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore index c5371b26436..e9d41a20bb2 100644 --- a/.gitignore +++ b/.gitignore @@ -10,9 +10,9 @@ Makefile.in missing *.sw? *~ -*lo -*la -*o +*.lo +*.la +*.o .libs Makefile stamp-h1 |