BUG: Support paths with spaces

This commit is contained in:
Andy Cedilnik 2004-03-28 10:14:25 -05:00
parent eeb7637a6e
commit 4fbf360a26
1 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ void cmLocalGenerator::GenerateInstallRules()
const char* postinstall = l->second.GetProperty("POST_INSTALL_SCRIPT");
if ( preinstall )
{
fout << "INCLUDE(" << preinstall << ")" << std::endl;
fout << "INCLUDE(\"" << preinstall << "\")" << std::endl;
}
std::string fname;
@ -235,7 +235,7 @@ void cmLocalGenerator::GenerateInstallRules()
}
if ( postinstall )
{
fout << "INCLUDE(" << postinstall << ")" << std::endl;
fout << "INCLUDE(\"" << postinstall << "\")" << std::endl;
}
}
}