fix, dub proj, output filename not properly set when guessed from 'name'

This commit is contained in:
Basile Burg 2015-09-19 11:01:07 +02:00
parent 2ad47f35f0
commit fb8c0495a1
1 changed files with 1 additions and 1 deletions

View File

@ -634,7 +634,7 @@ begin
begin
item := fJSON.Find('name');
if assigned(item) then
fOutputFileName := item.AsString;
fOutputFileName := fBasePath + item.AsString;
end;
case fBinKind of
executable: fOutputFileName += exeExt;