* 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:
joost 2017-03-31 18:54:54 +00:00
parent aade79cff4
commit a3f43a3661

View File

@ -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;