mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-19 05:39:29 +02:00
IDE: packagelink: do not expand empty package link filename
git-svn-id: trunk@59454 -
This commit is contained in:
parent
b05d125ae0
commit
d2bf8187e3
@ -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