[libcxx] r203807 - Exclude .svn (and other "dot" directories) when installing headers.

Bob Wilson bob.wilson at apple.com
Thu Mar 13 09:13:55 PDT 2014


Author: bwilson
Date: Thu Mar 13 11:13:54 2014
New Revision: 203807

URL: http://llvm.org/viewvc/llvm-project?rev=203807&view=rev
Log:
Exclude .svn (and other "dot" directories) when installing headers.

My fix for PR15820 in r180132 inadvertently removed the exclusion for ".*".
This puts it back again. Thanks for Nico Weber for pointing this out!

Modified:
    libcxx/trunk/Makefile

Modified: libcxx/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/Makefile?rev=203807&r1=203806&r2=203807&view=diff
==============================================================================
--- libcxx/trunk/Makefile (original)
+++ libcxx/trunk/Makefile Thu Mar 13 11:13:54 2014
@@ -34,7 +34,8 @@ clean::
 installheaders::
 	mkdir -p $(HEADER_DIR)/c++/v1/ext
 	(cd $(SRCDIRS)/include && \
-	  tar cf - --exclude=support --exclude=CMakeLists.txt .) | \
+	  tar cf - --exclude=".*" --exclude=support \
+	           --exclude=CMakeLists.txt *) | \
 	  (cd $(HEADER_DIR)/c++/v1 && tar xf -)
 	chmod 755 $(HEADER_DIR)/c++/v1
 	chmod 644 $(HEADER_DIR)/c++/v1/*





More information about the cfe-commits mailing list