mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-25 02:20:40 +02:00
IDE: packagelink: do not expand empty package link filename
git-svn-id: branches/fixes_2_0@59455 -
This commit is contained in:
parent
bfd2e66013
commit
19b5cdc8c5
@ -269,7 +269,7 @@ end;
|
||||
function TLazPackageLink.GetEffectiveFilename: string;
|
||||
begin
|
||||
Result:=LPKFilename;
|
||||
if not FilenameIsAbsolute(Result) then
|
||||
if (Result<>'') and not FilenameIsAbsolute(Result) then
|
||||
Result:=TrimFilename(EnvironmentOptions.GetParsedLazarusDirectory+PathDelim+Result);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user