summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2014-02-26 17:14:09 +0000
committerBob Wilson <bob.wilson@apple.com>2014-02-26 17:14:09 +0000
commitec7009afe86cea6ab95716f03b759948892f481a (patch)
treef83c1561eb85450264af2addc0c369ac36e4665a /Makefile
parent103af3478e48a71906c14a811c84c7aa76b5a656 (diff)
downloadexternal_libcxx-ec7009afe86cea6ab95716f03b759948892f481a.tar.gz
external_libcxx-ec7009afe86cea6ab95716f03b759948892f481a.tar.bz2
external_libcxx-ec7009afe86cea6ab95716f03b759948892f481a.zip
Don't install CMakeLists.txt along with the headers.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@202280 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92670233e..75f5a1221 100644
--- a/Makefile
+++ b/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/*