IDE: check for changed lpk on disk: do not check packages without lpksource

git-svn-id: trunk@41264 -
This commit is contained in:
mattias 2013-05-18 21:49:32 +00:00
parent f7647f0574
commit 9fba4b5031

View File

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