[libcxx] r202280 - Don't install CMakeLists.txt along with the headers.

Bob Wilson bob.wilson at apple.com
Wed Feb 26 09:14:09 PST 2014


Author: bwilson
Date: Wed Feb 26 11:14:09 2014
New Revision: 202280

URL: http://llvm.org/viewvc/llvm-project?rev=202280&view=rev
Log:
Don't install CMakeLists.txt along with the headers.

Modified:
    libcxx/trunk/Makefile

Modified: libcxx/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/Makefile?rev=202280&r1=202279&r2=202280&view=diff
==============================================================================
--- libcxx/trunk/Makefile (original)
+++ libcxx/trunk/Makefile Wed Feb 26 11:14:09 2014
@@ -33,7 +33,8 @@ clean::
 # The installheaders target is used by clang's runtime/libcxx makefile.
 installheaders::
 	mkdir -p $(HEADER_DIR)/c++/v1/ext
-	(cd $(SRCDIRS)/include && tar cf - --exclude=support .) | \
+	(cd $(SRCDIRS)/include && \
+	  tar cf - --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