Author: ddunbar
Date: Tue Nov 24 21:46:30 2009
New Revision: 89836

URL: http://llvm.org/viewvc/llvm-project?rev=89836&view=rev
Log:
Don't try to install .dir files.

Modified:
    cfe/trunk/Makefile

Modified: cfe/trunk/Makefile
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/Makefile?rev=89836&r1=89835&r2=89836&view=diff

==============================================================================
--- cfe/trunk/Makefile (original)
+++ cfe/trunk/Makefile Tue Nov 24 21:46:30 2009
@@ -45,7 +45,7 @@
          for  hdr in `find . -type f '!' '(' -name '*~' \
              -o -name '.#*' -o -name '*.in' -o -name '*.txt' \
              -o -name 'Makefile' -o -name '*.td' ')' -print \
-              | grep -v CVS | grep -v .svn` ; do \
+              | grep -v CVS | grep -v .svn | grep -v .dir` ; do \
            instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
            if test \! -d "$$instdir" ; then \
              $(EchoCmd) Making install directory $$instdir ; \
@@ -58,7 +58,7 @@
        $(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include" ; then \
          cd $(PROJ_OBJ_ROOT)/tools/clang/include && \
          for hdr in `find . -type f '!' '(' -name 'Makefile' ')' -print \
-            | grep -v CVS | grep -v .tmp` ; do \
+            | grep -v CVS | grep -v .tmp | grep -v .dir` ; do \
            $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
          done ; \
        fi


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to