From 6c9d1983d79dbc8fde65ce980417a9edb12b91aa Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Tue, 21 Jan 2003 14:01:41 -0500 Subject: This list can be really long. Only display the variable name --- Modules/CheckIncludeFiles.cmake | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Modules/CheckIncludeFiles.cmake') diff --git a/Modules/CheckIncludeFiles.cmake b/Modules/CheckIncludeFiles.cmake index 686a548148..3b43ba3c8b 100644 --- a/Modules/CheckIncludeFiles.cmake +++ b/Modules/CheckIncludeFiles.cmake @@ -21,7 +21,7 @@ MACRO(CHECK_INCLUDE_FILES INCLUDE VARIABLE) WRITE_FILE(${CMAKE_BINARY_DIR}/CMakeTmp/CheckIncludeFiles.c "${CHECK_INCLUDE_FILES_CONTENT}") - MESSAGE(STATUS "Looking for set of ${INCLUDE}") + MESSAGE(STATUS "Looking for include files ${VARIABLE}") TRY_COMPILE(${VARIABLE} ${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}/CMakeTmp/CheckIncludeFiles.c @@ -29,11 +29,11 @@ MACRO(CHECK_INCLUDE_FILES INCLUDE VARIABLE) -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_INCLUDE_FILES_FLAGS} OUTPUT_VARIABLE OUTPUT) IF(${VARIABLE}) - MESSAGE(STATUS "Looking for set of ${INCLUDE} - found") - SET(${VARIABLE} 1 CACHE INTERNAL "Have include ${INCLUDE}") + MESSAGE(STATUS "Looking for include files ${VARIABLE} - found") + SET(${VARIABLE} 1 CACHE INTERNAL "Have include ${VARIABLE}") ELSE(${VARIABLE}) - MESSAGE(STATUS "Looking for set of ${INCLUDE} - not found.") - SET(${VARIABLE} "" CACHE INTERNAL "Have include ${INCLUDE}") + MESSAGE(STATUS "Looking for include files ${VARIABLE} - not found.") + SET(${VARIABLE} "" CACHE INTERNAL "Have includes ${VARIABLE}") WRITE_FILE(${CMAKE_BINARY_DIR}/CMakeError.log "Determining if files ${INCLUDE} " "exist failed with the following output:\n" -- cgit v1.2.1