BUG: fix location of tmp file to use the full path, caused error on vista not running as admin

This commit is contained in:
Bill Hoffman 2008-04-01 17:39:04 -04:00
parent ccfec633a8
commit 2488dccf4e
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ void cmGlobalVisualStudio8Generator::Generate()
stampListFile += "/";
stampListFile += stampList;
std::string stampFile;
cmGeneratedFileStream fout(stampList.c_str());
cmGeneratedFileStream fout(stampListFile.c_str());
for(std::vector<cmLocalGenerator*>::const_iterator
gi = generators.begin(); gi != generators.end(); ++gi)
{