From 31678a3c27aecbaac8b292874b0aa0c815f056e3 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 24 Jul 2009 12:55:42 -0400 Subject: [PATCH] BUG: Install new fortran compiler id source. The extension of the id source file was changed from .F90 to .F so this fixes the install rule. --- Modules/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/CMakeLists.txt b/Modules/CMakeLists.txt index 312da0695..da168cd9f 100644 --- a/Modules/CMakeLists.txt +++ b/Modules/CMakeLists.txt @@ -8,5 +8,5 @@ INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.cxx$) INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.in$) INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.c$) INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.h$) -INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.F90$) +INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.F$) INSTALL_FILES(${CMAKE_DATA_DIR}/Modules readme\\.txt$)