summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-06-11 03:10:27 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-06-11 03:10:27 +0000
commit431c8767d996e6fd86ae4201ddf1101ac49b1be5 (patch)
treea5b4070a62fa238dfd375ad6ce8c1b443cd408e5 /Makefile
parent8a9a3706ffad58bdbe69efce3b58749038341e9d (diff)
downloadllvm-431c8767d996e6fd86ae4201ddf1101ac49b1be5.tar.gz
llvm-431c8767d996e6fd86ae4201ddf1101ac49b1be5.tar.bz2
llvm-431c8767d996e6fd86ae4201ddf1101ac49b1be5.tar.xz
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ddc782380e..fce18758af 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) -