diff options
author | Tom Tromey <tromey@redhat.com> | 2011-03-07 22:02:45 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-03-07 22:02:45 +0000 |
commit | 967d1f9b8191f7131b2b4ce88b4052ff2457473b (patch) | |
tree | 574da1fca83582db715dddb31b9a8246ed7b3f7d | |
parent | d68dcbb953ec1b07118ac8c606a13bdda439933a (diff) | |
download | ppe42-binutils-967d1f9b8191f7131b2b4ce88b4052ff2457473b.tar.gz ppe42-binutils-967d1f9b8191f7131b2b4ce88b4052ff2457473b.zip |
* Makefile.in (TAGS): Rewrite.
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index f98e365af5..e5092b1c35 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2011-03-07 Tom Tromey <tromey@redhat.com> + + * Makefile.in (TAGS): Rewrite. + 2011-03-07 Jan Kratochvil <jan.kratochvil@redhat.com> * gdb.trace/report.exp (12.1: trace report #1): New match for the diff --git a/gdb/testsuite/Makefile.in b/gdb/testsuite/Makefile.in index a53f9fdacb..8b22324ef2 100644 --- a/gdb/testsuite/Makefile.in +++ b/gdb/testsuite/Makefile.in @@ -245,5 +245,5 @@ config.status: configure $(SHELL) config.status --recheck TAGS: force - etags --language=none --regex='/proc[ \t]+\([^ \t]+\)/\1/' \ - `find $(srcdir) -name '*.exp' -print` + find $(srcdir) -name '*.exp' -print | \ + etags --regex='/proc[ \t]+\([^ \t]+\)/\1/' - |