diff options
| author | Shoaib Meenai <smeenai@fb.com> | 2017-12-08 21:50:32 +0000 |
|---|---|---|
| committer | Shoaib Meenai <smeenai@fb.com> | 2017-12-08 21:50:32 +0000 |
| commit | 927604def63286a4a67d19666399af52fee74f04 (patch) | |
| tree | c093cc7dc5bdfb1347dd5882b59abc6e18e9a89c | |
| parent | 5af073e3bf1c4f4c8fd26d0722c5635327eaf109 (diff) | |
| download | bcm5719-llvm-927604def63286a4a67d19666399af52fee74f04.tar.gz bcm5719-llvm-927604def63286a4a67d19666399af52fee74f04.zip | |
[libc++] Unbreak Apple buildbots
These buildbots are using the deprecated target name install-libcxx-headers
instead of the more up to date install-cxx-headers, so I need to add an
install-libcxx-headers-stripped target to satisfy them.
llvm-svn: 320201
| -rw-r--r-- | libcxx/include/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/include/CMakeLists.txt b/libcxx/include/CMakeLists.txt index 6b1383fd636..b98e09260ca 100644 --- a/libcxx/include/CMakeLists.txt +++ b/libcxx/include/CMakeLists.txt @@ -63,6 +63,7 @@ if (LIBCXX_INSTALL_HEADERS) add_custom_target(libcxx-headers) add_custom_target(install-libcxx-headers DEPENDS install-cxx-headers) + add_custom_target(install-libcxx-headers-stripped DEPENDS install-cxx-headers-stripped) endif() endif() |

