diff options
Diffstat (limited to 'Source/cmMakeDepend.cxx')
-rw-r--r-- | Source/cmMakeDepend.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmMakeDepend.cxx b/Source/cmMakeDepend.cxx index 9b181e9..5a18e07 100644 --- a/Source/cmMakeDepend.cxx +++ b/Source/cmMakeDepend.cxx @@ -95,7 +95,9 @@ void cmMakeDepend::SetMakefile(const cmMakefile* makefile) for(std::vector<std::string>::const_iterator j = includes.begin(); j != includes.end(); ++j) { - this->AddSearchPath(j->c_str()); + std::string path = *j; + m_Makefile->ExpandVariablesInString(path); + this->AddSearchPath(path.c_str()); } } |