From: Reid Spencer Date: Mon, 9 Apr 2007 19:08:58 +0000 (+0000) Subject: Speed up installation a bit by ignoring .svn directories. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0522d8b12413f2799dfe5c88e95f69141265b087;p=oota-llvm.git Speed up installation a bit by ignoring .svn directories. Patch by Scott Michel. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35826 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 13efb39ffa2..de97781fcc4 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -1691,7 +1691,8 @@ install-local:: $(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 ; \