瀏覽代碼

atari: fpc now searches for the compiler with .ttp extension, as that's the default on Atari

git-svn-id: trunk@41141 -
Károly Balogh 6 年之前
父節點
當前提交
6c87b89e45
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      compiler/utils/fpc.pp

+ 5 - 1
compiler/utils/fpc.pp

@@ -35,7 +35,11 @@ program fpc;
     {$ifdef NETWARE}
       exeext='.nlm';
     {$else}
-      exeext='.exe';
+      {$ifdef ATARI}
+        exeext='.ttp';
+      {$else}
+        exeext='.exe';
+      {$endif ATARI}
     {$endif NETWARE}
   {$endif HASAMIGA}
 {$endif UNIX}