[llvm-commits] [llvm] r78789 - /llvm/trunk/cmake/modules/LLVMLibDeps.cmake
Oscar Fuentes
ofv at wanadoo.es
Tue Aug 11 21:18:10 PDT 2009
Author: ofv
Date: Tue Aug 11 23:18:10 2009
New Revision: 78789
URL: http://llvm.org/viewvc/llvm-project?rev=78789&view=rev
Log:
CMake: Fixed sed script for translating library dependencies from
LibDeps.txt format to LLVMLibDeps.cmake format.
Modified:
llvm/trunk/cmake/modules/LLVMLibDeps.cmake
Modified: llvm/trunk/cmake/modules/LLVMLibDeps.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/LLVMLibDeps.cmake?rev=78789&r1=78788&r2=78789&view=diff
==============================================================================
--- llvm/trunk/cmake/modules/LLVMLibDeps.cmake (original)
+++ llvm/trunk/cmake/modules/LLVMLibDeps.cmake Tue Aug 11 23:18:10 2009
@@ -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.
More information about the llvm-commits
mailing list