Browse Source

Revert: do not lowercase executable names in Unix systems.

Margers 11 months ago
parent
commit
a1fad6bfc0
1 changed files with 1 additions and 2 deletions
  1. 1 2
      packages/ide/fputils.pas

+ 1 - 2
packages/ide/fputils.pas

@@ -155,8 +155,7 @@ begin
               NoPath:=false; {Skip lowercasing path: 'X11'<>'x11' }
             end;
  'A'..'Z' : if NoPath then
-             {FixFileName[i]:=char(byte(s[i])+ord('a')-ord('A'))}
-             FixFileName[i]:=s[i] {leave case as is, not sure why lowercasing to begin with}
+             FixFileName[i]:=char(byte(s[i])+ord('a')-ord('A'))
             else
              FixFileName[i]:=s[i];
  {$else}