diff options
author | Mike Stump <mikestump@comcast.net> | 2010-03-04 16:07:20 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2010-03-04 16:07:20 +0000 |
commit | b2d244d15f85aafbdb040a4f46882a92e07ccf06 (patch) | |
tree | 71a785b41e5c13d15bdd5a4b66d86e55f1b91a28 | |
parent | 33344e0febac971fc0cb646471ebe40757b7b056 (diff) | |
download | gcc-b2d244d15f85aafbdb040a4f46882a92e07ccf06.zip gcc-b2d244d15f85aafbdb040a4f46882a92e07ccf06.tar.gz gcc-b2d244d15f85aafbdb040a4f46882a92e07ccf06.tar.bz2 |
* Makefile.in (TAGS): Remove *.y.
From-SVN: r157228
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4706306..4c443c4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2010-03-04 Mike Stump <mikestump@comcast.net> + + * Makefile.in (TAGS): Remove *.y. + 2010-03-04 Richard Guenther <rguenther@suse.de> PR tree-optimization/40761 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d5c23c9..125a80b 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -4872,7 +4872,7 @@ TAGS: lang.tags incs="$$incs --include $$dir/TAGS.sub"; \ fi; \ done; \ - etags -o TAGS.sub *.y *.h *.c; \ + etags -o TAGS.sub *.h *.c; \ etags --include TAGS.sub $$incs) # ----------------------------------------------------- |