diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-11-25 23:39:17 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-11-25 23:39:17 +0000 |
commit | b7828a811864cf05ce543a0dd7f28ea45b206fb7 (patch) | |
tree | f54ef8c5c93bc3c56c0e4eab0d5d2ac031423f31 /libcxx/cmake/Modules | |
parent | b0c7dee0b66a84b429851897ca5a26252454b442 (diff) | |
download | bcm5719-llvm-b7828a811864cf05ce543a0dd7f28ea45b206fb7.tar.gz bcm5719-llvm-b7828a811864cf05ce543a0dd7f28ea45b206fb7.zip |
Fix installation of cxxabi.h through libc++.
Previously, the install command for the cxxabi headers specified
the wrong component, and therefore they were not being included
in the install-cxx command.
This patch corrects the component name.
llvm-svn: 318989
Diffstat (limited to 'libcxx/cmake/Modules')
-rw-r--r-- | libcxx/cmake/Modules/HandleLibCXXABI.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/cmake/Modules/HandleLibCXXABI.cmake b/libcxx/cmake/Modules/HandleLibCXXABI.cmake index b1f6bee8f94..558e11ba2cc 100644 --- a/libcxx/cmake/Modules/HandleLibCXXABI.cmake +++ b/libcxx/cmake/Modules/HandleLibCXXABI.cmake @@ -56,7 +56,7 @@ macro(setup_abi_lib abidefines abilib abifiles abidirs) if (LIBCXX_INSTALL_HEADERS) install(FILES "${LIBCXX_BINARY_INCLUDE_DIR}/${fpath}" DESTINATION ${LIBCXX_INSTALL_PREFIX}include/c++/v1/${dstdir} - COMPONENT libcxx + COMPONENT cxx-headers PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ ) endif() |