Lib path should be converted to native path too.

This commit is contained in:
Sebastien Barre 2001-12-06 13:32:58 -05:00
parent dea1309e8d
commit 4372a40922

View File

@ -869,7 +869,8 @@ void cmUnixMakefileGenerator::OutputLibDepend(std::ostream& fout,
{ {
libpath += m_StaticLibraryExtension; libpath += m_StaticLibraryExtension;
} }
fout << cmSystemTools::EscapeSpaces(libpath.c_str()) << " "; fout << this->ConvertToNativePath(cmSystemTools::EscapeSpaces(libpath.c_str()).c_str())
<< " ";
} }
} }