From 50a1f8a5e49375c7f6025f0cf6f607aac484fdb1 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Fri, 6 Sep 2002 08:33:21 -0400 Subject: minor fixes --- Source/cmLocalUnixMakefileGenerator.cxx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 7454600..3a22cf9 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -799,23 +799,23 @@ void cmLocalUnixMakefileGenerator::OutputUtilityRule(std::ostream& fout, std::string comment = "Rule to build Utility "; comment += name; std::string depends; + std::string replaceVars; const std::vector &ccs = t.GetCustomCommands(); for(std::vector::const_iterator i = ccs.begin(); i != ccs.end(); ++i) { - const std::vector & dep = i->GetDepends(); - for(std::vector::const_iterator d = dep.begin(); - d != dep.end(); ++d) - { - depends += " \\\n"; - depends += *d; - } + const std::vector & dep = i->GetDepends(); + for(std::vector::const_iterator d = dep.begin(); + d != dep.end(); ++d) + { + depends += " \\\n"; + replaceVars = *d; + m_Makefile->ExpandVariablesInString(replaceVars); + depends += this->ConvertToOutputPath(replaceVars.c_str()); + } } - this->OutputMakeRule(fout, - comment.c_str(), - name, - depends.c_str(), - cc); + this->OutputMakeRule(fout, comment.c_str(), name, + depends.c_str(), cc); } -- cgit v0.12