mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-08 02:38:13 +02:00
don't force targetfilename to lowercase (issue #1760)
git-svn-id: trunk@8802 -
This commit is contained in:
parent
2787b8d319
commit
54b0f37260
@ -1316,11 +1316,10 @@ begin
|
||||
UnitOutDir:=GetUnitOutPath(false);
|
||||
if UnitOutDir='' then
|
||||
UnitOutDir:=ExtractFilePath(MainSourceFileName);
|
||||
// fpc creates lowercase executables as default
|
||||
if TargetFilename<>'' then
|
||||
OutFilename:=TargetFilename
|
||||
else
|
||||
OutFilename:=lowercase(ExtractFileNameOnly(MainSourceFileName));
|
||||
OutFilename:=ExtractFileNameOnly(MainSourceFileName);
|
||||
//debugln('TBaseCompilerOptions.CreateTargetFilename MainSourceFileName=',MainSourceFileName,' OutFilename=',OutFilename,' TargetFilename=',TargetFilename);
|
||||
|
||||
Result:=AppendPathDelim(UnitOutDir)+OutFilename;
|
||||
|
@ -2954,6 +2954,8 @@ resourcestring
|
||||
lisPODoNotSaveAnySessionInfo = 'Do not save any session info';
|
||||
lisPOSaveSessionInformationIn = 'Save session information in';
|
||||
lisMVSaveMessagesToFileTxt = 'Save messages to file (*.txt)';
|
||||
|
||||
lisShowOldTabOrder = 'Show old tab order';
|
||||
lisTabOrderOf = 'Tab Order of';
|
||||
|
||||
implementation
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user