From 14565e51b8edc28b812df66fffc1038d4eb4522b Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sat, 17 Jan 2015 03:54:05 +0100 Subject: [PATCH] the way outputFilename has to be guesses relies on an incoherence --- src/ce_project.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ce_project.pas b/src/ce_project.pas index 7b42ba57..0f3fc70b 100644 --- a/src/ce_project.pas +++ b/src/ce_project.pas @@ -464,6 +464,7 @@ begin {$IFDEF WINDOWS} // field is specified without ext or with a dot in the name. // DMD will add the ext. (e.g: "-ofresourced") + // https://issues.dlang.org/show_bug.cgi?id=13989 if fileexists(fOutputFilename + exeExt) then if currentConfiguration.outputOptions.binaryKind = executable then fOutputFilename := fOutputFilename + exeExt;