[libc++] Fix incorrect install component for the libc++ linker script (#171663)
This patch fixes the name of the install component for the libc++ linker
script. Every other target mentions the cxx component, and that one
mentions libcxx. I believe that was a typo in 4bd3d16c2d62.
NOKEYCHECK=True
GitOrigin-RevId: dec52b2c4791e74058c05d0a85405725989480c6
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index f59fe0e..0063c26 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -381,7 +381,7 @@
if (LIBCXX_ENABLE_SHARED AND LIBCXX_ENABLE_ABI_LINKER_SCRIPT)
install(FILES "$<TARGET_LINKER_FILE:cxx_shared>"
DESTINATION ${LIBCXX_INSTALL_LIBRARY_DIR}
- COMPONENT libcxx)
+ COMPONENT cxx)
endif()
if (NOT CMAKE_CONFIGURATION_TYPES)