[libcxx] r224317 - Revert "Fix installheaders target's permissions"

Justin Bogner mail at justinbogner.com
Mon Dec 15 21:28:07 PST 2014


Author: bogner
Date: Mon Dec 15 23:28:07 2014
New Revision: 224317

URL: http://llvm.org/viewvc/llvm-project?rev=224317&view=rev
Log:
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.

Modified:
    libcxx/trunk/Makefile

Modified: libcxx/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/Makefile?rev=224317&r1=224316&r2=224317&view=diff
==============================================================================
--- libcxx/trunk/Makefile (original)
+++ libcxx/trunk/Makefile Mon Dec 15 23:28:07 2014
@@ -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::
 





More information about the cfe-commits mailing list