From 66f2edbe635b6f0ae740a1a614cbddc831ce383e Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 24 Feb 2009 14:32:25 -0500 Subject: BUG: Fix Fortran implicit dependency include path The previous change to Source/cmDependsFortran.cxx while refactoring implicit dependency scanning configuration rules completely broke loading of the include file search path while scanning Fortran dependencies. This adds the line that should have been added during the previous change to load the include path correctly. --- Source/cmDependsFortran.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Source/cmDependsFortran.cxx') diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index 7329f27444..aaa98dab82 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -141,6 +141,9 @@ cmDependsFortran cmDepends(lg), Internal(new cmDependsFortranInternals) { + // Configure the include file search path. + this->SetIncludePathFromLanguage("Fortran"); + // Get the list of definitions. std::vector definitions; cmMakefile* mf = this->LocalGenerator->GetMakefile(); -- cgit v1.2.1