libman, reg from project, fix case where source root could be relative

This commit is contained in:
Basile Burg 2017-01-18 20:52:33 +01:00
parent 33b99b1247
commit 84219d44fb
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
2 changed files with 5 additions and 1 deletions

View File

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

View File

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