diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-09-06 13:24:30 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-09-06 13:24:30 (GMT) |
commit | 709517bcf03ba1376af1a8f6e174bbdad0fe8d98 (patch) | |
tree | ad9596f2d6f465fc942d398a30036647932d9e7e /Source/cmLocalUnixMakefileGenerator.cxx | |
parent | 50a1f8a5e49375c7f6025f0cf6f607aac484fdb1 (diff) | |
download | CMake-709517bcf03ba1376af1a8f6e174bbdad0fe8d98.zip CMake-709517bcf03ba1376af1a8f6e174bbdad0fe8d98.tar.gz CMake-709517bcf03ba1376af1a8f6e174bbdad0fe8d98.tar.bz2 |
minor fix
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 3a22cf9..76cf511 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -811,7 +811,7 @@ void cmLocalUnixMakefileGenerator::OutputUtilityRule(std::ostream& fout, depends += " \\\n"; replaceVars = *d; m_Makefile->ExpandVariablesInString(replaceVars); - depends += this->ConvertToOutputPath(replaceVars.c_str()); + depends += cmSystemTools::ConvertToOutputPath(replaceVars.c_str()); } } this->OutputMakeRule(fout, comment.c_str(), name, |