From 2eff7f788a9e4d71044fcd73c6b391ca31689361 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Fri, 26 Feb 2016 20:59:40 +0000 Subject: [PATCH] [CMake] Fix a typo in add_compiler_rt_library. llvm-svn: 262063 --- compiler-rt/cmake/Modules/AddCompilerRT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/cmake/Modules/AddCompilerRT.cmake b/compiler-rt/cmake/Modules/AddCompilerRT.cmake index 2ed80c0..13b85338 100644 --- a/compiler-rt/cmake/Modules/AddCompilerRT.cmake +++ b/compiler-rt/cmake/Modules/AddCompilerRT.cmake @@ -196,7 +196,7 @@ function(add_compiler_rt_runtime name type) endif() endforeach() if(LIB_PARENT_TARGET) - add_dependencies(${LIB_PARENT_TARGET} ${libname}) + add_dependencies(${LIB_PARENT_TARGET} ${libnames}) endif() endfunction() -- 2.7.4