diff options
author | karoly <karoly@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2019-01-30 10:48:27 +0000 |
---|---|---|
committer | karoly <karoly@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2019-01-30 10:48:27 +0000 |
commit | becf1965e5a065bab28754724d88a2e86913646c (patch) | |
tree | 2af3736264eed7853e8e199a5075be003e85d72b /compiler | |
parent | cd0fade7fd574fe57040519c1cfc25c1d7b9caa7 (diff) | |
download | fpc-becf1965e5a065bab28754724d88a2e86913646c.tar.gz |
atari: fpc now searches for the compiler with .ttp extension, as that's the default on Atari
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@41141 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/utils/fpc.pp | 6 |
1 files changed, 5 insertions, 1 deletions
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} |