summaryrefslogtreecommitdiff
path: root/cmake/Modules
diff options
context:
space:
mode:
authorAlexey Samsonov <vonosmas@gmail.com>2016-02-26 20:59:40 +0000
committerAlexey Samsonov <vonosmas@gmail.com>2016-02-26 20:59:40 +0000
commit124a8a55a7a2a56c4ea436cc80d7d5badef35654 (patch)
tree79702b427c36a49e1772547b4d0e725d5d461b53 /cmake/Modules
parentd7dd5fc8457724232353da5d0209952dd9c9f966 (diff)
[CMake] Fix a typo in add_compiler_rt_library.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@262063 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/Modules')
-rw-r--r--cmake/Modules/AddCompilerRT.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/AddCompilerRT.cmake b/cmake/Modules/AddCompilerRT.cmake
index 2ed80c002..13b85338a 100644
--- a/cmake/Modules/AddCompilerRT.cmake
+++ b/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()