diff options
-rw-r--r-- | Source/cmLocalGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index d0f92db..0a19def 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -231,8 +231,8 @@ void cmLocalGenerator::AddInstallRule(std::ostream& fout, const char* dest, int } fout << "MESSAGE(STATUS \"Install " << stype << ": " << sfiles.c_str() << "\")\n" - << "FILE(INSTALL DESTINATION " << destination.c_str() - << " TYPE " << stype.c_str() << " FILES " << sfiles.c_str() << ")\n"; + << "FILE(INSTALL DESTINATION \"" << destination.c_str() + << "\" TYPE " << stype.c_str() << " FILES \"" << sfiles.c_str() << "\")\n"; } const char* cmLocalGenerator::GetSafeDefinition(const char* def) |