diff options
author | Brad King <brad.king@kitware.com> | 2008-02-04 15:04:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-02-04 15:04:23 (GMT) |
commit | c12a7e388d449e96107ba1eea8b8b2f2469ec20f (patch) | |
tree | 46a1f1d7416b3458a5e2094dd990d1aee8aa8ff1 /Modules/CMakeDetermineCXXCompiler.cmake | |
parent | e67dc68a3b18f3fb1f7adcb752588c2717dc1986 (diff) | |
download | CMake-c12a7e388d449e96107ba1eea8b8b2f2469ec20f.zip CMake-c12a7e388d449e96107ba1eea8b8b2f2469ec20f.tar.gz CMake-c12a7e388d449e96107ba1eea8b8b2f2469ec20f.tar.bz2 |
BUG: When configuring compiler information files into the CMakeFiles directory in the project build tree, use IMMEDIATE option for CONFIGURE_FILE explicitly. It is needed in case the user sets CMAKE_BACKWARDS_COMPATIBILITY to 2.0 or lower.
Diffstat (limited to 'Modules/CMakeDetermineCXXCompiler.cmake')
-rw-r--r-- | Modules/CMakeDetermineCXXCompiler.cmake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/CMakeDetermineCXXCompiler.cmake b/Modules/CMakeDetermineCXXCompiler.cmake index bb5ff74..2286bfa 100644 --- a/Modules/CMakeDetermineCXXCompiler.cmake +++ b/Modules/CMakeDetermineCXXCompiler.cmake @@ -142,7 +142,8 @@ INCLUDE(CMakeFindBinUtils) # configure all variables set in this file CONFIGURE_FILE(${CMAKE_ROOT}/Modules/CMakeCXXCompiler.cmake.in - ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeCXXCompiler.cmake - @ONLY) + ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeCXXCompiler.cmake + @ONLY IMMEDIATE # IMMEDIATE must be here for compatibility mode <= 2.0 + ) SET(CMAKE_CXX_COMPILER_ENV_VAR "CXX") |