diff options
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-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 bac89cc..b5638d5 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -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; } } } |