summaryrefslogtreecommitdiff
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2008-07-30 15:26:34 -0400
committerDavid Cole <david.cole@kitware.com>2008-07-30 15:26:34 -0400
commit17452105cd4a2d5cb22591171e462559c6127507 (patch)
treef39d9eb8c3bcb7cf719bc639247d2637cdb328a7 /Source/cmake.cxx
parentbeeebcdc407eda8d29ff342f1570af4740e600ee (diff)
downloadcmake-17452105cd4a2d5cb22591171e462559c6127507.tar.gz
BUG: Fix issue #7088 - do not emit error messages when attempts to run Visual Studio macros fail. You can still get the error output as messages if you want using --debug-output from the cmake command line.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index e9ccf06665..df95155daa 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -1181,7 +1181,7 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args)
<< " s. (clock)"
<< "\n";
return 0;
- }
+ }
// Command to calculate the md5sum of a file
else if (args[1] == "md5sum" && args.size() >= 3)
@@ -1422,7 +1422,8 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args)
}
}
- return cmCallVisualStudioMacro::CallMacro(args[2], args[3], macroArgs);
+ return cmCallVisualStudioMacro::CallMacro(args[2], args[3],
+ macroArgs, true);
}
#endif