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

git-svn-id: trunk@41141 -
This commit is contained in:
Károly Balogh 2019-01-30 10:48:27 +00:00
parent beec828647
commit 6c87b89e45

View File

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