diff options
author | Daniele E. Domenichelli <daniele.domenichelli@iit.it> | 2013-11-13 09:50:56 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-11-13 10:12:17 -0500 |
commit | 15610bb5b16a4f39202a84a6f6ef1a22b17170df (patch) | |
tree | 68b5a742022fed31c873a5906c1769167acb26a1 /Modules/CMakeDetermineASMCompiler.cmake | |
parent | 706aab0418f40e9816be5270e5b4e89321411e2d (diff) | |
download | cmake-15610bb5b16a4f39202a84a6f6ef1a22b17170df.tar.gz |
Drop use of configure_file IMMEDIATE option
Since commit 7d47c693 (Drop compatibility with CMake < 2.4, 2013-10-08)
we no longer need to use the configure_file IMMEDIATE option to support
compatibility modes less than 2.0.
Diffstat (limited to 'Modules/CMakeDetermineASMCompiler.cmake')
-rw-r--r-- | Modules/CMakeDetermineASMCompiler.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeDetermineASMCompiler.cmake b/Modules/CMakeDetermineASMCompiler.cmake index 1adfadbb72..247de6f7b6 100644 --- a/Modules/CMakeDetermineASMCompiler.cmake +++ b/Modules/CMakeDetermineASMCompiler.cmake @@ -167,7 +167,7 @@ set(_CMAKE_ASM_COMPILER_ENV_VAR "${CMAKE_ASM${ASM_DIALECT}_COMPILER_ENV_VAR}") # configure variables set in this file for fast reload later on configure_file(${CMAKE_ROOT}/Modules/CMakeASMCompiler.cmake.in - ${CMAKE_PLATFORM_INFO_DIR}/CMakeASM${ASM_DIALECT}Compiler.cmake IMMEDIATE @ONLY) + ${CMAKE_PLATFORM_INFO_DIR}/CMakeASM${ASM_DIALECT}Compiler.cmake @ONLY) set(_CMAKE_ASM_COMPILER) set(_CMAKE_ASM_COMPILER_ARG1) |