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;
|
i: integer;
|
||||||
c: string;
|
c: string;
|
||||||
begin
|
begin
|
||||||
c := fSymStringExpander.expand('<CPR>');
|
c := fSymStringExpander.expand('<CPR>') + DirectorySeparator;
|
||||||
e := TStringList.create;
|
e := TStringList.create;
|
||||||
try
|
try
|
||||||
e.AddStrings(['.d','.di']);
|
e.AddStrings(['.d','.di']);
|
||||||
|
@ -1099,7 +1099,7 @@ var
|
||||||
i: integer;
|
i: integer;
|
||||||
c: string;
|
c: string;
|
||||||
begin
|
begin
|
||||||
c := fSymStringExpander.expand('<CPR>');
|
c := fSymStringExpander.expand('<CPR>') + DirectorySeparator;
|
||||||
if base.isNil then
|
if base.isNil then
|
||||||
begin
|
begin
|
||||||
exts := TStringList.Create;
|
exts := TStringList.Create;
|
||||||
|
|
Loading…
Reference in New Issue