diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-09 19:08:58 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-09 19:08:58 +0000 |
commit | 0522d8b12413f2799dfe5c88e95f69141265b087 (patch) | |
tree | 095ba8d5c727e707d873f1c70fa61325c6af1707 | |
parent | e98815469ccd2f1f1585abdc7c36042177bc26f0 (diff) |
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
-rw-r--r-- | Makefile.rules | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules index 13efb39ffa..de97781fcc 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 ; \ |