Quellcode durchsuchen

cmMakefile: check cmake script mode exit code after command

Which potentially may set it, and forward it to the cmExecutionStatus
for proper handling in caller.
leha-bot vor 1 Jahr
Ursprung
Commit
b62dcbf5d2
1 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
  1. 6 0
      Source/cmMakefile.cxx

+ 6 - 0
Source/cmMakefile.cxx

@@ -529,6 +529,12 @@ bool cmMakefile::ExecuteCommand(const cmListFileFunction& lff,
           cmSystemTools::SetFatalErrorOccurred();
         }
       }
+      if (this->GetCMakeInstance()->HasScriptModeExitCode() &&
+          this->GetCMakeInstance()->GetWorkingMode() == cmake::SCRIPT_MODE) {
+        // pass-through the exit code from inner cmake_language(EXIT) ,
+        // possibly from include() or similar command...
+        status.SetExitCode(this->GetCMakeInstance()->GetScriptModeExitCode());
+      }
     }
   } else {
     if (!cmSystemTools::GetFatalErrorOccurred()) {