ENH: fix in source build with non-gnu

This commit is contained in:
Bill Hoffman 2001-04-27 11:03:32 -04:00
parent e14ecec4c7
commit de67154214
1 changed files with 11 additions and 0 deletions

View File

@ -668,6 +668,17 @@ void cmMakefile::GenerateCacheOnly()
}
fout << "include "
<< mf->GetHomeOutputDirectory() << "/CMake/CMakeMaster.make\n";
dest = mf->GetStartOutputDirectory();
dest += "/CMakeTargets.make";
std::cout << "cmake: creating : " << dest.c_str() << "\n";
std::ofstream fout2(dest.c_str());
if(!fout2)
{
cmSystemTools::Error("Failed to open file for write " , dest.c_str());
}
fout2 << "#Initial CMakeTargets.make file created only to keep \n";
fout2 << "#certain makes happy that don't like to include makefiles\n";
fout2 << "#that do not exist\n";
}
for(unsigned int i =0; i < makefiles.size(); ++i)