mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-06 10:00:34 +02:00
Fix AV
This commit is contained in:
parent
09845999ff
commit
71ac105bc7
@ -4262,9 +4262,12 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
Result := LazarusIDE.DoCallPackageBuildingHandler(APackage);
|
||||
if Result<>mrOK then
|
||||
Exit;
|
||||
if Assigned(LazarusIDE) then
|
||||
begin
|
||||
Result := LazarusIDE.DoCallPackageBuildingHandler(APackage);
|
||||
if Result<>mrOK then
|
||||
Exit;
|
||||
end;
|
||||
|
||||
// create external tool to run the compiler
|
||||
//DebugLn('TLazPackageGraph.CompilePackage WorkingDir="',APackage.Directory,'"');
|
||||
|
Loading…
Reference in New Issue
Block a user