<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">Fixed in r203807.<div><br><div><div>On Mar 12, 2014, at 12:48 PM, Bob Wilson <<a href="mailto:bob.wilson@apple.com">bob.wilson@apple.com</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><meta http-equiv="Content-Type" content="text/html charset=us-ascii"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">On Mar 11, 2014, at 5:40 PM, Nico Weber <<a href="mailto:thakis@chromium.org">thakis@chromium.org</a>> wrote:<br><div><br class="Apple-interchange-newline"><blockquote type="cite"><div dir="ltr">This now also installs the .svn directory. Is that intentional?</div></blockquote><div><br></div>Definitely not intentional!  I will fix that.</div><div><br><blockquote type="cite"><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Apr 23, 2013 at 11:51 AM, Bob Wilson <span dir="ltr"><<a href="mailto:bob.wilson@apple.com" target="_blank">bob.wilson@apple.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: bwilson<br>
Date: Tue Apr 23 13:51:51 2013<br>
New Revision: 180132<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=180132&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=180132&view=rev</a><br>
Log:<br>
PR15820: Use tar instead of rsync to install the headers.<br>
<br>
Modified:<br>
    libcxx/trunk/Makefile<br>
<br>
Modified: libcxx/trunk/Makefile<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/libcxx/trunk/Makefile?rev=180132&r1=180131&r2=180132&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/libcxx/trunk/Makefile?rev=180132&r1=180131&r2=180132&view=diff</a><br>

==============================================================================<br>
--- libcxx/trunk/Makefile (original)<br>
+++ libcxx/trunk/Makefile Tue Apr 23 13:51:51 2013<br>
@@ -33,8 +33,8 @@ clean::<br>
 # The installheaders target is used by clang's runtime/libcxx makefile.<br>
 installheaders::<br>
        mkdir -p $(HEADER_DIR)/c++/v1/ext<br>
-       rsync -r --exclude=".*" --exclude="support" $(SRCDIRS)/include/* \<br>
-         $(HEADER_DIR)/c++/v1/<br>
+       (cd $(SRCDIRS)/include && tar cf - --exclude=support .) | \<br>
+         (cd $(HEADER_DIR)/c++/v1 && tar xf -)<br>
        chmod 755 $(HEADER_DIR)/c++/v1<br>
        chmod 644 $(HEADER_DIR)/c++/v1/*<br>
        chmod 755 $(HEADER_DIR)/c++/v1/ext<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a><br>
</blockquote></div><br></div>
</blockquote></div><br></div></blockquote></div><br></div></body></html>