From 6c87b89e45184fc5deda0c5af0e4ad9bd476776b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1roly=20Balogh?= Date: Wed, 30 Jan 2019 10:48:27 +0000 Subject: [PATCH] atari: fpc now searches for the compiler with .ttp extension, as that's the default on Atari git-svn-id: trunk@41141 - --- compiler/utils/fpc.pp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/compiler/utils/fpc.pp b/compiler/utils/fpc.pp index 0660102233..7465bedf99 100644 --- a/compiler/utils/fpc.pp +++ b/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}