BUG: No need for the backward compatibility variable warning
This commit is contained in:
parent
6fb9e2781a
commit
0b92b2faf5
|
@ -44,8 +44,8 @@ bool cmConfigureFileCommand::InitialPass(std::vector<std::string> const& args)
|
||||||
// after 2.0 it only does InitialPass
|
// after 2.0 it only does InitialPass
|
||||||
this->Immediate = false;
|
this->Immediate = false;
|
||||||
const char* versionValue
|
const char* versionValue
|
||||||
= this->Makefile->GetRequiredDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
|
= this->Makefile->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
|
||||||
if (atof(versionValue) > 2.0)
|
if (versionValue && atof(versionValue) > 2.0)
|
||||||
{
|
{
|
||||||
this->Immediate = true;
|
this->Immediate = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue