diff options
author | Brad King <brad.king@kitware.com> | 2021-10-04 14:35:29 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-10-04 14:36:51 (GMT) |
commit | d1a7e78c4fb4bc92e6fb6b9ba2edb839047fb66c (patch) | |
tree | 9832e5cf5c3a423a05b0f7539f4db048d120f528 /Modules | |
parent | 12b999e66a8fded6f277271993c80bb9327dbfe2 (diff) | |
parent | 2a00e5072d0639a4b88bee811df2c5acce37ea62 (diff) | |
download | CMake-d1a7e78c4fb4bc92e6fb6b9ba2edb839047fb66c.zip CMake-d1a7e78c4fb4bc92e6fb6b9ba2edb839047fb66c.tar.gz CMake-d1a7e78c4fb4bc92e6fb6b9ba2edb839047fb66c.tar.bz2 |
Merge topic 'FortranCInterface-timestamp-check' into release-3.21
2a00e5072d FortranCInterface: Fix regression in timestamp check
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Craig Scott <craig.scott@crascit.com>
Merge-request: !6581
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FortranCInterface/Detect.cmake | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/FortranCInterface/Detect.cmake b/Modules/FortranCInterface/Detect.cmake index 9e5726b..4d3cb00 100644 --- a/Modules/FortranCInterface/Detect.cmake +++ b/Modules/FortranCInterface/Detect.cmake @@ -8,11 +8,10 @@ configure_file(${FortranCInterface_SOURCE_DIR}/Input.cmake.in # configuration changes. if(NOT EXISTS ${FortranCInterface_BINARY_DIR}/Output.cmake OR NOT EXISTS ${FortranCInterface_BINARY_DIR}/Input.cmake - OR NOT EXISTS ${FortranCInterface_BINARY_DIR}/Output.cmake.in OR NOT ${FortranCInterface_BINARY_DIR}/Output.cmake IS_NEWER_THAN ${FortranCInterface_BINARY_DIR}/Input.cmake OR NOT ${FortranCInterface_SOURCE_DIR}/Output.cmake - IS_NEWER_THAN ${FortranCInterface_BINARY_DIR}/Output.cmake.in + IS_NEWER_THAN ${FortranCInterface_SOURCE_DIR}/Output.cmake.in OR NOT ${FortranCInterface_BINARY_DIR}/Output.cmake IS_NEWER_THAN ${FortranCInterface_SOURCE_DIR}/CMakeLists.txt OR NOT ${FortranCInterface_BINARY_DIR}/Output.cmake |