aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2008-09-22 02:33:43 +0000
committerOscar Fuentes <ofv@wanadoo.es>2008-09-22 02:33:43 +0000
commit5cf885bbefcfc4794f1f4a52866bf6b2e280a71c (patch)
treede0a374e2887768efb29967021687296fbdf1ef3 /cmake/modules
parent00905d5339fd277781c7393112f80febe86b2945 (diff)
downloadexternal_llvm-5cf885bbefcfc4794f1f4a52866bf6b2e280a71c.zip
external_llvm-5cf885bbefcfc4794f1f4a52866bf6b2e280a71c.tar.gz
external_llvm-5cf885bbefcfc4794f1f4a52866bf6b2e280a71c.tar.bz2
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')
-rwxr-xr-xcmake/modules/AddPartiallyLinkedObject.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/AddPartiallyLinkedObject.cmake b/cmake/modules/AddPartiallyLinkedObject.cmake
index b985b3e..a8a3d99 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}