Speed up installation a bit by ignoring .svn directories.
authorReid Spencer <rspencer@reidspencer.com>
Mon, 9 Apr 2007 19:08:58 +0000 (19:08 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 9 Apr 2007 19:08:58 +0000 (19:08 +0000)
Patch by Scott Michel.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35826 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.rules

index 13efb39ffa216c2cf9294389183ebd69263fda97..de97781fcc47e1f38dd635f67480891b915c550c 100644 (file)
@@ -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 ; \