summaryrefslogtreecommitdiff
path: root/Source/cmIncludeExternalMSProjectCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-09-28 13:55:26 -0400
committerBrad King <brad.king@kitware.com>2006-09-28 13:55:26 -0400
commit7d2de52c1a617a8a559e5c749ce5e6abd3739f01 (patch)
tree3ae6b364d9f04d7cdcacd6ddc8ddd8f9e9bc0063 /Source/cmIncludeExternalMSProjectCommand.cxx
parent506dca3990e56281bd0eecd6c26afe6d36caab6e (diff)
downloadcmake-7d2de52c1a617a8a559e5c749ce5e6abd3739f01.tar.gz
ENH: Cleaned up signature of cmMakefile::AddUtilityCommand. It is not valid to have an output from a utility rule and no calls to the method asked for an output anyway. The argument has been removed.
Diffstat (limited to 'Source/cmIncludeExternalMSProjectCommand.cxx')
-rw-r--r--Source/cmIncludeExternalMSProjectCommand.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmIncludeExternalMSProjectCommand.cxx b/Source/cmIncludeExternalMSProjectCommand.cxx
index b5038faad6..143773a850 100644
--- a/Source/cmIncludeExternalMSProjectCommand.cxx
+++ b/Source/cmIncludeExternalMSProjectCommand.cxx
@@ -46,10 +46,9 @@ bool cmIncludeExternalMSProjectCommand
utility_name += args[0];
std::string path = args[1];
cmSystemTools::ConvertToUnixSlashes(path);
- const char* no_output = 0;
const char* no_working_directory = 0;
this->Makefile->AddUtilityCommand(utility_name.c_str(), true,
- no_output, depends,
+ depends,
no_working_directory,
args[0].c_str(), path.c_str());