diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2009-08-12 04:18:10 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2009-08-12 04:18:10 +0000 |
commit | 138dcb726ab15a9743596c8685bdb7ec754fcc48 (patch) | |
tree | 5e4e3e30ad9335243f7873cf671a19c80f4463ea /cmake | |
parent | 2d3847d34f451722d261401630d5f27bcf371e97 (diff) | |
download | external_llvm-138dcb726ab15a9743596c8685bdb7ec754fcc48.zip external_llvm-138dcb726ab15a9743596c8685bdb7ec754fcc48.tar.gz external_llvm-138dcb726ab15a9743596c8685bdb7ec754fcc48.tar.bz2 |
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
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/modules/LLVMLibDeps.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
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. |