diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 14:08:03 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 14:08:03 (GMT) |
commit | 743b4c99831ef6cb44cdd33d0b6fb7fa3ec1ab68 (patch) | |
tree | 3aeaf5da006496fe13a42890ad262db0bb1ae8d4 /Modules/CheckIncludeFiles.cmake | |
parent | a488b192af5838ec1d3ed0bfa816fdd1be5e0b38 (diff) | |
download | CMake-743b4c99831ef6cb44cdd33d0b6fb7fa3ec1ab68.zip CMake-743b4c99831ef6cb44cdd33d0b6fb7fa3ec1ab68.tar.gz CMake-743b4c99831ef6cb44cdd33d0b6fb7fa3ec1ab68.tar.bz2 |
BUG: Fix the module
Diffstat (limited to 'Modules/CheckIncludeFiles.cmake')
-rw-r--r-- | Modules/CheckIncludeFiles.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CheckIncludeFiles.cmake b/Modules/CheckIncludeFiles.cmake index 88a7819..7ff0ebb 100644 --- a/Modules/CheckIncludeFiles.cmake +++ b/Modules/CheckIncludeFiles.cmake @@ -29,7 +29,7 @@ MACRO(CHECK_INCLUDE_FILES INCLUDE VARIABLE) SET(CMAKE_CONFIGURABLE_FILE_CONTENT "${CMAKE_CONFIGURABLE_FILE_CONTENT}\n\nint main(){return 0;}\n") CONFIGURE_FILE("${CMAKE_ROOT}/Modules/CMakeConfigurableFile.in" - "${CMAKE_BINARY_DIR}/CMakeFiles/CMakeTmp/CheckIncludeFiles.c" @ONLY) + "${CMAKE_BINARY_DIR}/CMakeFiles/CMakeTmp/CheckIncludeFiles.c" @ONLY IMMEDIATE) MESSAGE(STATUS "Looking for include files ${VARIABLE}") TRY_COMPILE(${VARIABLE} |