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 /gdb/testsuite/Makefile.in | |
parent | d68dcbb953ec1b07118ac8c606a13bdda439933a (diff) | |
download | gdb-967d1f9b8191f7131b2b4ce88b4052ff2457473b.zip gdb-967d1f9b8191f7131b2b4ce88b4052ff2457473b.tar.gz gdb-967d1f9b8191f7131b2b4ce88b4052ff2457473b.tar.bz2 |
* Makefile.in (TAGS): Rewrite.
Diffstat (limited to 'gdb/testsuite/Makefile.in')
-rw-r--r-- | gdb/testsuite/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/Makefile.in b/gdb/testsuite/Makefile.in index a53f9fd..8b22324 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/' - |