diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-11-04 15:59:51 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-11-04 15:59:51 +0000 |
commit | 91ed25d186ca403d56c7684e681d472b9268093a (patch) | |
tree | 9cb0330a3d51f217e19f240dd37b247b56b43f0f /libcxx/Makefile | |
parent | d2b911235479577c910efdfa7d5ac52046c2794d (diff) | |
download | bcm5719-llvm-91ed25d186ca403d56c7684e681d472b9268093a.tar.gz bcm5719-llvm-91ed25d186ca403d56c7684e681d472b9268093a.zip |
Remove support folder from Apple install
llvm-svn: 143702
Diffstat (limited to 'libcxx/Makefile')
-rw-r--r-- | libcxx/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libcxx/Makefile b/libcxx/Makefile index c01a84b7378..7c75a32a079 100644 --- a/libcxx/Makefile +++ b/libcxx/Makefile @@ -34,11 +34,11 @@ installhdrs:: mkdir -p $(DSTROOT)/$(INSTALL_PREFIX)/usr/clang-ide/lib/c++/v1/ext mkdir -p $(DSTROOT)/$(INSTALL_PREFIX)/Developer/usr/lib/c++/v1/ext mkdir -p $(DSTROOT)/$(INSTALL_PREFIX)/Developer/Platforms/iPhoneOS.platform/usr/lib/c++/v1/ext - rsync -r --exclude=".*" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/usr/include/c++/v1/ - rsync -r --exclude=".*" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/usr/lib/c++/v1/ - rsync -r --exclude=".*" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/usr/clang-ide/lib/c++/v1/ - rsync -r --exclude=".*" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/Developer/usr/lib/c++/v1/ - rsync -r --exclude=".*" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/Developer/Platforms/iPhoneOS.platform/usr/lib/c++/v1/ + rsync -r --exclude=".*" --exclude="support" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/usr/include/c++/v1/ + rsync -r --exclude=".*" --exclude="support" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/usr/lib/c++/v1/ + rsync -r --exclude=".*" --exclude="support" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/usr/clang-ide/lib/c++/v1/ + rsync -r --exclude=".*" --exclude="support" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/Developer/usr/lib/c++/v1/ + rsync -r --exclude=".*" --exclude="support" $(SRCDIRS)/include/* $(DSTROOT)/$(INSTALL_PREFIX)/Developer/Platforms/iPhoneOS.platform/usr/lib/c++/v1/ chown -R root:wheel $(DSTROOT)/$(INSTALL_PREFIX)/usr/include/c++ chown -R root:wheel $(DSTROOT)/$(INSTALL_PREFIX)/usr/lib/c++ chown -R root:wheel $(DSTROOT)/$(INSTALL_PREFIX)/usr/clang-ide/lib/c++ |