BUG: Fix for spaces in path

This commit is contained in:
Andy Cedilnik 2004-01-26 16:29:36 -05:00
parent 5c8c6fa3da
commit 6eed8b55dd

View File

@ -231,8 +231,8 @@ void cmLocalGenerator::AddInstallRule(std::ostream& fout, const char* dest, int
} }
fout fout
<< "MESSAGE(STATUS \"Install " << stype << ": " << sfiles.c_str() << "\")\n" << "MESSAGE(STATUS \"Install " << stype << ": " << sfiles.c_str() << "\")\n"
<< "FILE(INSTALL DESTINATION " << destination.c_str() << "FILE(INSTALL DESTINATION \"" << destination.c_str()
<< " TYPE " << stype.c_str() << " FILES " << sfiles.c_str() << ")\n"; << "\" TYPE " << stype.c_str() << " FILES \"" << sfiles.c_str() << "\")\n";
} }
const char* cmLocalGenerator::GetSafeDefinition(const char* def) const char* cmLocalGenerator::GetSafeDefinition(const char* def)