aboutsummaryrefslogtreecommitdiff
path: root/gcc/Makefile.in
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2004-06-02 16:44:48 -0400
committerJason Merrill <jason@gcc.gnu.org>2004-06-02 16:44:48 -0400
commitb25a89339056f59109121ddd7f9f5b7624f287e4 (patch)
treef20f1617283fd909be40610732a3a2fd605717f8 /gcc/Makefile.in
parentb9696fd41dee5e9eb711b989648f38432f6e90b0 (diff)
downloadgcc-b25a89339056f59109121ddd7f9f5b7624f287e4.zip
gcc-b25a89339056f59109121ddd7f9f5b7624f287e4.tar.gz
gcc-b25a89339056f59109121ddd7f9f5b7624f287e4.tar.bz2
Makefile.in (TAGS): Don't mess with c-parse.[ch].
* Makefile.in (TAGS): Don't mess with c-parse.[ch]. Do include c-parse.in. From-SVN: r82582
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r--gcc/Makefile.in6
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 743f8e8c..4625c0b 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -3517,11 +3517,7 @@ TAGS: lang.tags
incs="$$incs --include $$dir/TAGS.sub"; \
fi; \
done; \
- mkdir tmp-tags; \
- mv -f c-parse.[ch] tmp-tags; \
- etags -o TAGS.sub *.y *.h *.c; \
- mv tmp-tags/* .; \
- rmdir tmp-tags; \
+ etags -o TAGS.sub *.y *.h *.c -l yacc c-parse.in; \
etags --include TAGS.sub $$incs)
# ------------------------------------------------------