Explorar el Código

use the new HASAMIGA instead of the non-existing AmigaShell

git-svn-id: trunk@26124 -
Károly Balogh hace 11 años
padre
commit
ba89914471
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      compiler/cfileutl.pas

+ 3 - 3
compiler/cfileutl.pas

@@ -1546,18 +1546,18 @@ end;
         result := Unix.fpsystem(command);
       end;
 {$else hasunix}
-  {$ifdef amigashell}
+  {$ifdef hasamiga}
       begin
         result := RequotedExecuteProcess('',command);
       end;
-  {$else amigashell}
+  {$else hasamiga}
       var
         comspec : string;
       begin
         comspec:=GetEnvironmentVariable('COMSPEC');
         result := RequotedExecuteProcess(comspec,' /C '+command);
       end;
-   {$endif amigashell}
+   {$endif hasamiga}
 {$endif hasunix}