diff options
author | Justin Bogner <mail@justinbogner.com> | 2014-12-16 05:28:07 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2014-12-16 05:28:07 +0000 |
commit | 1e8019f5b9c8a2f5f89ffedadc1846f7ec3dff5d (patch) | |
tree | a77c6f61665bf4ee434c7940994b007090be8d4d | |
parent | 9963adeaefaf0dca48b8c207a3ed7098528f338c (diff) | |
download | bcm5719-llvm-1e8019f5b9c8a2f5f89ffedadc1846f7ec3dff5d.tar.gz bcm5719-llvm-1e8019f5b9c8a2f5f89ffedadc1846f7ec3dff5d.zip |
Revert "Fix installheaders target's permissions"
The install of headers excludes the support directory, so these chmod
calls fail on non-existent directories, as seen on this bot:
http://lab.llvm.org:8080/green/job/clang-stage1-configure-RA_build/2801/console
This reverts commit r224300.
llvm-svn: 224317
-rw-r--r-- | libcxx/Makefile | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libcxx/Makefile b/libcxx/Makefile index efa656d7f04..ab7b5b603a0 100644 --- a/libcxx/Makefile +++ b/libcxx/Makefile @@ -43,20 +43,6 @@ installheaders:: chmod 644 $(HEADER_DIR)/c++/v1/ext/* chmod 755 $(HEADER_DIR)/c++/v1/experimental chmod 644 $(HEADER_DIR)/c++/v1/experimental/* - chmod 755 $(HEADER_DIR)/c++/v1/support - chmod 644 $(HEADER_DIR)/c++/v1/support/* - chmod 755 $(HEADER_DIR)/c++/v1/support/android - chmod 644 $(HEADER_DIR)/c++/v1/support/android/* - chmod 755 $(HEADER_DIR)/c++/v1/support/ibm - chmod 644 $(HEADER_DIR)/c++/v1/support/ibm/* - chmod 755 $(HEADER_DIR)/c++/v1/support/newlib - chmod 644 $(HEADER_DIR)/c++/v1/support/newlib/* - chmod 755 $(HEADER_DIR)/c++/v1/support/solaris - chmod 644 $(HEADER_DIR)/c++/v1/support/solaris/* - chmod 755 $(HEADER_DIR)/c++/v1/support/win32 - chmod 644 $(HEADER_DIR)/c++/v1/support/win32/* - chmod 755 $(HEADER_DIR)/c++/v1/support/xlocale - chmod 644 $(HEADER_DIR)/c++/v1/support/xlocale/* install:: |