mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 21:59:54 -06:00
cmake: Fix --check-build-system argument count check (#14784)
This internal option requires two arguments, not just one. Fix the argument count required to recognize the option.
This commit is contained in:
@@ -653,7 +653,7 @@ void cmake::SetArgs(const std::vector<std::string>& args,
|
||||
cmSystemTools::ConvertToUnixSlashes(path);
|
||||
this->SetHomeOutputDirectory(path.c_str());
|
||||
}
|
||||
else if((i < args.size()-1) && (arg.find("--check-build-system",0) == 0))
|
||||
else if((i < args.size()-2) && (arg.find("--check-build-system",0) == 0))
|
||||
{
|
||||
this->CheckBuildSystemArgument = args[++i];
|
||||
this->ClearBuildSystem = (atoi(args[++i].c_str()) > 0);
|
||||
|
||||
Reference in New Issue
Block a user