* removed beautifying (camelcasing) of main module filename on *nix. Fixed #5614

git-svn-id: trunk@11458 -
This commit is contained in:
marco 2008-07-24 14:43:20 +00:00
parent 4dac183601
commit dc14080182

View File

@ -843,8 +843,13 @@ begin
else
FileName:='';
end;
{$ifdef Unix}
If (FileName<>'') then
FileName:=FExpand(FileName);
{$else}
If (FileName<>'') then
FileName:=FixFileName(FExpand(FileName));
{$endif}
GetMainFile:=FileName;
end;