From c16f16505a46e6c6af2d0f32e1309c2409b6da91 Mon Sep 17 00:00:00 2001 From: Oscar Fuentes Date: Wed, 12 Aug 2009 04:18:10 +0000 Subject: CMake: Fixed sed script for translating library dependencies from LibDeps.txt format to LLVMLibDeps.cmake format. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78789 91177308-0d34-0410-b5e6-96231b3b80d8 --- cmake/modules/LLVMLibDeps.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmake/modules') diff --git a/cmake/modules/LLVMLibDeps.cmake b/cmake/modules/LLVMLibDeps.cmake index d767034..99eb73b 100644 --- a/cmake/modules/LLVMLibDeps.cmake +++ b/cmake/modules/LLVMLibDeps.cmake @@ -12,7 +12,7 @@ # It is necessary to remove the `lib' prefix and the `.a'. # This 'sed' script should do the trick: -# sed -e s'#\.a##g' -e 's#libLLVM#LLVM#g' -e 's#: ##' -e 's#\(.*\)#set(MSVC_LIB_DEPS_\1)#' ~/llvm/tools/llvm-config/LibDeps.txt +# sed -e s'#\.a##g' -e 's#libLLVM#LLVM#g' -e 's#: # #' -e 's#\(.*\)#set(MSVC_LIB_DEPS_\1)#' ~/llvm/tools/llvm-config/LibDeps.txt # # TODO: do this transformations on cmake. -- cgit v1.1