|
|
@@ -568,11 +568,6 @@ void cmGlobalGenerator::EnableLanguage(
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- // Find the native build tool for this generator.
|
|
|
- if (!this->FindMakeProgram(mf)) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
// Tell the generator about the target system.
|
|
|
std::string system = mf->GetSafeDefinition("CMAKE_SYSTEM_NAME");
|
|
|
if (!this->SetSystemName(system, mf)) {
|
|
|
@@ -593,6 +588,11 @@ void cmGlobalGenerator::EnableLanguage(
|
|
|
cmSystemTools::SetFatalErrorOccured();
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
+ // Find the native build tool for this generator.
|
|
|
+ if (!this->FindMakeProgram(mf)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// Check that the languages are supported by the generator and its
|