diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-04-01 21:39:04 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-04-01 21:39:04 (GMT) |
commit | 2488dccf4e2ab4f68a55e5caa4e55961266614e2 (patch) | |
tree | a62a83fa154e2aa94340292cba7393486f3be190 /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | ccfec633a83a9bb2ffdf60a957088ff94c47151e (diff) | |
download | CMake-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.cxx | 2 |
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) { |