mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 06:09:14 -05:00
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.
This commit is contained in:
@@ -190,9 +190,8 @@ void cmVTKWrapJavaCommand::FinalPass()
|
||||
alldepends.push_back(res2);
|
||||
}
|
||||
|
||||
const char* no_output = 0;
|
||||
const char* no_working_directory = 0;
|
||||
this->Makefile->AddUtilityCommand((this->LibraryName+"JavaClasses").c_str(),
|
||||
true, no_output,
|
||||
alldepends, no_working_directory, "");
|
||||
this->Makefile->AddUtilityCommand(
|
||||
(this->LibraryName+"JavaClasses").c_str(),
|
||||
true, alldepends, no_working_directory, "");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user