From 2488dccf4e2ab4f68a55e5caa4e55961266614e2 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 1 Apr 2008 17:39:04 -0400 Subject: [PATCH] BUG: fix location of tmp file to use the full path, caused error on vista not running as admin --- Source/cmGlobalVisualStudio8Generator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index f88f14f54..f6ffe8c50 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::const_iterator gi = generators.begin(); gi != generators.end(); ++gi) {