mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 06:49:12 +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]);
|
||||
if (not (lpfNeeded in APackage.Flags))
|
||||
or APackage.Modified
|
||||
or APackage.IsVirtual then
|
||||
or APackage.IsVirtual
|
||||
or (APackage.LPKSource=nil)
|
||||
then
|
||||
continue;
|
||||
NewFilename:=APackage.Filename;
|
||||
if FileExistsCached(APackage.Filename) then begin
|
||||
|
Loading…
Reference in New Issue
Block a user