mirror of https://gitlab.com/basile.b/dexed.git
fix possibly missing dir sep when expanding dexed projs xtra sources
This commit is contained in:
parent
a0b8e25172
commit
00218c1d89
|
@ -1070,7 +1070,7 @@ var
|
|||
i: integer;
|
||||
c: string;
|
||||
begin
|
||||
c := fSymStringExpander.expand('<CPR>');
|
||||
c := fSymStringExpander.expand('<CPR>') + DirectorySeparator;
|
||||
e := TStringList.create;
|
||||
try
|
||||
e.AddStrings(['.d','.di']);
|
||||
|
@ -1099,7 +1099,7 @@ var
|
|||
i: integer;
|
||||
c: string;
|
||||
begin
|
||||
c := fSymStringExpander.expand('<CPR>');
|
||||
c := fSymStringExpander.expand('<CPR>') + DirectorySeparator;
|
||||
if base.isNil then
|
||||
begin
|
||||
exts := TStringList.Create;
|
||||
|
|
Loading…
Reference in New Issue