mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-25 18:49:21 +02:00
* Try to fix plugins as fast as possible, so that as many packages
are compiled with the plugins git-svn-id: trunk@35698 -
This commit is contained in:
parent
aade79cff4
commit
a3f43a3661
@ -669,7 +669,14 @@ begin
|
||||
begin
|
||||
P := Repo.Packages[j];
|
||||
if (P = FindPackage(P.Name, pkgpkInstalled)) and PackageIsBroken(P, nil) then
|
||||
SL.Add(P.Name);
|
||||
begin
|
||||
if P.IsFPMakeAddIn then
|
||||
// Make sure that FPMakeAddIn's are fixed first, so
|
||||
// as much packages are compiled with them.
|
||||
SL.Insert(0, P.Name)
|
||||
else
|
||||
SL.Add(P.Name);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user