Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit dba28a9

Browse files
authored
build: correct the install rule for swiftdocs (#1137)
A copy-paste error resulted in copying the swiftmodule over the swiftdoc. Correct this. Thanks to @pschuh who originally spotted the mistake!
1 parent 3536ee3 commit dba28a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ if(ENABLE_SWIFT_NUMERICS)
258258

259259
if(CMAKE_SYSTEM_NAME STREQUAL Darwin)
260260
install(FILES $<TARGET_PROPERTY:${module},INTERFACE_INCLUDE_DIRECTORIES>/${module}.swiftdoc
261-
DESTINATION lib/swift/${swift_os}/${module}.swiftmodule
261+
DESTINATION lib/swift/${swift_os}/${module}.swiftdoc
262262
RENAME ${swift_arch}.swiftdoc)
263263
install(FILES $<TARGET_PROPERTY:${module},INTERFACE_INCLUDE_DIRECTORIES>/${module}.swiftmodule
264264
DESTINATION lib/swift/${swift_os}/${module}.swiftmodule

0 commit comments

Comments
 (0)