Skip to content

Commit dec52b2

Browse files
authored
[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 4bd3d16.
1 parent 54b62d7 commit dec52b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ endif()
381381
if (LIBCXX_ENABLE_SHARED AND LIBCXX_ENABLE_ABI_LINKER_SCRIPT)
382382
install(FILES "$<TARGET_LINKER_FILE:cxx_shared>"
383383
DESTINATION ${LIBCXX_INSTALL_LIBRARY_DIR}
384-
COMPONENT libcxx)
384+
COMPONENT cxx)
385385
endif()
386386

387387
if (NOT CMAKE_CONFIGURATION_TYPES)

0 commit comments

Comments
 (0)