Skip to content

Commit f8bb780

Browse files
authored
Merge pull request #7598 from apple/hughbe-patch-1
Fix build break
2 parents 30464a5 + 718f3ba commit f8bb780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/modules/AddSwiftUnittests.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function(add_swift_unittest test_dirname)
2929
set(new_libnames)
3030
foreach(dep ${libnames})
3131
if("${dep}" MATCHES "^(LLVM|Clang|gtest)" AND NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
32-
ist(APPEND new_libnames "${LLVM_LIBRARY_OUTPUT_INTDIR}/lib${dep}.a")
32+
list(APPEND new_libnames "${LLVM_LIBRARY_OUTPUT_INTDIR}/lib${dep}.a")
3333
else()
3434
list(APPEND new_libnames "${dep}")
3535
endif()

0 commit comments

Comments
 (0)