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!

llvm-svn: 203807
This commit is contained in:
Bob Wilson 2014-03-13 16:13:54 +00:00
parent 89050436e6
commit 996e992bf2

View File

@ -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/*