[llvm-commits] CVS: llvm/Makefile.rules
Reid Spencer
reid at x10sys.com
Mon Apr 9 12:09:16 PDT 2007
Changes in directory llvm:
Makefile.rules updated: 1.429 -> 1.430
---
Log message:
Speed up installation a bit by ignoring .svn directories.
Patch by Scott Michel.
---
Diffs of the changes: (+2 -1)
Makefile.rules | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.429 llvm/Makefile.rules:1.430
--- llvm/Makefile.rules:1.429 Thu Mar 29 14:05:44 2007
+++ llvm/Makefile.rules Mon Apr 9 14:08:58 2007
@@ -1691,7 +1691,8 @@
$(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
cd $(PROJ_SRC_ROOT)/include && \
for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
- -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
+ -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
+ grep -v .svn` ; do \
instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
if test \! -d "$$instdir" ; then \
$(EchoCmd) Making install directory $$instdir ; \
More information about the llvm-commits
mailing list