diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2008-09-22 02:33:43 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2008-09-22 02:33:43 +0000 |
commit | b3334b6cced3670a24f28a215e44b13858417eca (patch) | |
tree | de0a374e2887768efb29967021687296fbdf1ef3 /cmake/modules/AddPartiallyLinkedObject.cmake | |
parent | 3d01fc7de86c75926e4e5ac7cc49f0116018893d (diff) |
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
Diffstat (limited to 'cmake/modules/AddPartiallyLinkedObject.cmake')
-rwxr-xr-x | cmake/modules/AddPartiallyLinkedObject.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/AddPartiallyLinkedObject.cmake b/cmake/modules/AddPartiallyLinkedObject.cmake index b985b3eb28..a8a3d999e4 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} |