[compiler-rt] r262063 - [CMake] Fix a typo in add_compiler_rt_library.
Alexey Samsonov via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 26 12:59:41 PST 2016
Author: samsonov
Date: Fri Feb 26 14:59:40 2016
New Revision: 262063
URL: http://llvm.org/viewvc/llvm-project?rev=262063&view=rev
Log:
[CMake] Fix a typo in add_compiler_rt_library.
Modified:
compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake
Modified: compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake?rev=262063&r1=262062&r2=262063&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake (original)
+++ compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake Fri Feb 26 14:59:40 2016
@@ -196,7 +196,7 @@ function(add_compiler_rt_runtime name ty
endif()
endforeach()
if(LIB_PARENT_TARGET)
- add_dependencies(${LIB_PARENT_TARGET} ${libname})
+ add_dependencies(${LIB_PARENT_TARGET} ${libnames})
endif()
endfunction()
More information about the llvm-commits
mailing list