mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 15:39:32 +02:00
IDE: check for changed lpk on disk: do not check packages without lpksource
git-svn-id: trunk@41264 -
This commit is contained in:
parent
f7647f0574
commit
9fba4b5031
@ -4482,7 +4482,9 @@ begin
|
|||||||
APackage:=TLazPackage(FItems[i]);
|
APackage:=TLazPackage(FItems[i]);
|
||||||
if (not (lpfNeeded in APackage.Flags))
|
if (not (lpfNeeded in APackage.Flags))
|
||||||
or APackage.Modified
|
or APackage.Modified
|
||||||
or APackage.IsVirtual then
|
or APackage.IsVirtual
|
||||||
|
or (APackage.LPKSource=nil)
|
||||||
|
then
|
||||||
continue;
|
continue;
|
||||||
NewFilename:=APackage.Filename;
|
NewFilename:=APackage.Filename;
|
||||||
if FileExistsCached(APackage.Filename) then begin
|
if FileExistsCached(APackage.Filename) then begin
|
||||||
|
Loading…
Reference in New Issue
Block a user