From: Oscar Fuentes Date: Mon, 22 Sep 2008 02:33:43 +0000 (+0000) Subject: add_partially_linked_object: Replaced nonexistent MESSAGE option in X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b3334b6cced3670a24f28a215e44b13858417eca;p=oota-llvm.git add_partially_linked_object: Replaced nonexistent MESSAGE option in add_custom_command with COMMENT. It was forcing unconditional command execution. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56425 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/AddPartiallyLinkedObject.cmake b/cmake/modules/AddPartiallyLinkedObject.cmake index b985b3eb282..a8a3d999e4f 100755 --- a/cmake/modules/AddPartiallyLinkedObject.cmake +++ b/cmake/modules/AddPartiallyLinkedObject.cmake @@ -8,7 +8,7 @@ macro(add_partially_linked_object lib) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/temp_lib) add_library( ${lib} STATIC ${ARGN}) add_custom_command(OUTPUT ${pll} - MESSAGE "Building ${lib}.o..." + COMMENT "Building ${lib}.o..." DEPENDS ${lib} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/temp_lib COMMAND ar x ${CMAKE_STATIC_LIBRARY_PREFIX}${lib}${CMAKE_STATIC_LIBRARY_SUFFIX}