From: Alexey Samsonov Date: Fri, 26 Feb 2016 20:59:40 +0000 (+0000) Subject: [CMake] Fix a typo in add_compiler_rt_library. X-Git-Tag: llvmorg-3.9.0-rc1~13078 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2eff7f788a9e4d71044fcd73c6b391ca31689361;p=platform%2Fupstream%2Fllvm.git [CMake] Fix a typo in add_compiler_rt_library. llvm-svn: 262063 --- 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()