From 94ddaecadbb12c5e67617553b067554a657980a1 Mon Sep 17 00:00:00 2001 From: Peter Portante Date: Thu, 15 Nov 2012 17:36:13 -0500 Subject: 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 Reviewed-on: http://review.gluster.org/4195 Reviewed-by: Kaleb KEITHLEY Tested-by: Gluster Build System Reviewed-by: Pete Zaitcev Reviewed-by: Anand Avati --- .gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c5371b264..e9d41a20b 100644 --- a/.gitignore +++ b/.gitignore @@ -10,9 +10,9 @@ Makefile.in missing *.sw? *~ -*lo -*la -*o +*.lo +*.la +*.o .libs Makefile stamp-h1 -- cgit