[llvm-commits] CVS: llvm/Makefile
LLVM
llvm at cs.uiuc.edu
Thu Jun 10 22:16:02 PDT 2004
Changes in directory llvm:
Makefile updated: 1.25 -> 1.26
---
Log message:
Change tags rule to pipe output from find through etags command so that it
doesn't break on machines with limited command line lengths.
---
Diffs of the changes: (+1 -1)
Index: llvm/Makefile
diff -u llvm/Makefile:1.25 llvm/Makefile:1.26
--- llvm/Makefile:1.25 Tue May 25 15:01:25 2004
+++ llvm/Makefile Thu Jun 10 22:10:27 2004
@@ -48,5 +48,5 @@
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) -
More information about the llvm-commits
mailing list