mirror of https://gitlab.com/basile.b/dexed.git
upstream fix, exe name under linux if it contains dots
This commit is contained in:
parent
4652b59566
commit
60f428bc3d
|
@ -685,7 +685,9 @@ begin
|
|||
begin
|
||||
ext := fOutputFilename.extractFileExt;
|
||||
case currentConfiguration.outputOptions.binaryKind of
|
||||
{$IFDEF WINDOWS}
|
||||
executable: if ext <> exeExt then fOutputFilename += exeExt;
|
||||
{$ENDIF}
|
||||
staticlib: if ext <> libExt then fOutputFilename += libExt;
|
||||
sharedlib: if ext <> dynExt then fOutputFilename += dynExt;
|
||||
obj: if ext <> dynExt then fOutputFilename += objExt;
|
||||
|
|
Loading…
Reference in New Issue