From fa5da05c866cc2e80fca9bcc83fe5d40a2dfbe49 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Wed, 26 Feb 2014 17:14:09 +0000 Subject: [PATCH] Don't install CMakeLists.txt along with the headers. llvm-svn: 202280 --- libcxx/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libcxx/Makefile b/libcxx/Makefile index 92670233eb4a..75f5a122163c 100644 --- a/libcxx/Makefile +++ b/libcxx/Makefile @@ -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/*