From 35645ca40ce695b080f9613ba7a7220dfbf9c032 Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Tue, 4 Nov 2003 04:20:02 +0000 Subject: [PATCH] Avoid argument list limit in etags generation. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 23416590a5e..23820d86d68 100644 --- a/Makefile.in +++ b/Makefile.in @@ -126,7 +126,7 @@ crosstest:: $(TESTSUBDIRS:%=%/__crosstest__) # Misc rules TAGS etags: - etags `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.dbg.c' -print` + find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.dbg.c' -print | etags - tags ctags: ctags --c-types=+px `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.dbg.c' -print`