summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio8Generator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-04-01 21:39:04 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-04-01 21:39:04 (GMT)
commit2488dccf4e2ab4f68a55e5caa4e55961266614e2 (patch)
treea62a83fa154e2aa94340292cba7393486f3be190 /Source/cmGlobalVisualStudio8Generator.cxx
parentccfec633a83a9bb2ffdf60a957088ff94c47151e (diff)
downloadCMake-2488dccf4e2ab4f68a55e5caa4e55961266614e2.zip
CMake-2488dccf4e2ab4f68a55e5caa4e55961266614e2.tar.gz
CMake-2488dccf4e2ab4f68a55e5caa4e55961266614e2.tar.bz2
BUG: fix location of tmp file to use the full path, caused error on vista not running as admin
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio8Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx
index f88f14f..f6ffe8c 100644
--- a/Source/cmGlobalVisualStudio8Generator.cxx
+++ b/Source/cmGlobalVisualStudio8Generator.cxx
@@ -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)
{