This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] root .gitignore resynchronized with GCC's...


Hello,

It turns out we forgot to get approval from the GCC maintainers
when creating a .gitignore file at the root of src/. We only
realized this after I sent a patch to ammend it.

Jason Merrill kindly imported the .gitignore file from GDB, but
with some modifications, some of them undoing some entries.
Some of the undoing made sense to me, and some others might
have to do with GCC.

In any case, we are now in sync with GCC. Any further changes
need to be coordinated with gcc-patches.

2013-01-11  Joel Brobecker  <brobecker@adacore.com>

        Sync with GCC, merge:

        2013-01-09  Jason Merrill  <jason@redhat.com>

        * .gitignore: Import from gdb repository.

Sorry, Mike, for any regression. But I didn't want us to have
to worry about diverging files...

-- 
Joel
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/ChangeLog,v
retrieving revision 1.1060
diff -u -u -p -r1.1060 ChangeLog
--- ChangeLog	11 Jan 2013 13:10:17 -0000	1.1060
+++ ChangeLog	11 Jan 2013 15:15:26 -0000
@@ -1,3 +1,11 @@
+2013-01-11  Joel Brobecker  <brobecker@adacore.com>
+
+	Sync with GCC, merge:
+
+	2013-01-09  Jason Merrill  <jason@redhat.com>
+
+	* .gitignore: Import from gdb repository.
+
 2013-01-11  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
 
 	* config.sub: Update from config repo.
Index: .gitignore
===================================================================
RCS file: /cvs/src/src/.gitignore,v
retrieving revision 1.1
diff -u -u -p -r1.1 .gitignore
--- .gitignore	17 Nov 2010 19:34:59 -0000	1.1
+++ .gitignore	11 Jan 2013 15:15:26 -0000
@@ -4,14 +4,16 @@
 *.rej
 
 *~
-*.a
+.#*
+*#
+
 *.flt
-*.gdb
 *.gmo
 *.info
 *.la
 *.lo
 *.o
+*.pyc
 *.tmp
 
 .deps
@@ -24,17 +26,17 @@ config.intl
 config.log
 config.status
 libtool
-Makefile
-stamp-*
 POTFILES
 *-POTFILES
-*/po/Makefile.in
+
+TAGS
+TAGS.sub
 
 .gdbinit
 .gdb_history
+
+# ignore core files, but not java/net/protocol/core/
 core
+!core/
 
 lost+found
-
-*.log
-*.sum

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]