From 431c8767d996e6fd86ae4201ddf1101ac49b1be5 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 11 Jun 2004 03:10:27 +0000 Subject: [PATCH] Change tags rule to pipe output from find through etags command so that it doesn't break on machines with limited command line lengths. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14138 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ddc782380e8..fce18758af2 100644 --- a/Makefile +++ b/Makefile @@ -48,5 +48,5 @@ TAGS: tags all:: tags tags: - $(ETAGS) $(ETAGSFLAGS) `find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h'` + find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h' | $(ETAGS) $(ETAGSFLAGS) -