mirror of https://gitlab.com/basile.b/dexed.git
libman, reg from project, fix case where source root could be relative
This commit is contained in:
parent
33b99b1247
commit
84219d44fb
|
@ -334,7 +334,7 @@ begin
|
|||
begin
|
||||
lib := libraryByIndex[i];
|
||||
als := lib.libAlias.upperCase;
|
||||
// TODO-cmaintenace: from 3 upd 1 remove auto suprerssion of libman entry for phobos and rt.
|
||||
// TODO-cmaintenace: from 3 upd 1 remove auto deletion of libman entry for phobos and rt.
|
||||
if (als = 'PHOBOS') or (als = 'RUNTIME') or (als = 'DRUNTIME') then
|
||||
begin
|
||||
fCollection.Delete(i);
|
||||
|
|
|
@ -938,7 +938,11 @@ begin
|
|||
if project.sourcesCount = 0 then
|
||||
result := ''
|
||||
else
|
||||
begin
|
||||
result := lst[0];
|
||||
if FilenameIsAbsolute(result) then
|
||||
result := expandFilenameEx(GetCurrentDir, result);
|
||||
end;
|
||||
if ((project.sourcesCount > 1) and (lst.Count > 1))
|
||||
or (not sym) then
|
||||
begin
|
||||
|
|
Loading…
Reference in New Issue