Don't use hardcoded paths on Amiga

Hardcoded paths don't make sense on AmigaOS, AROS and MorphOS.
This commit is contained in:
Ola Söder
2023-04-07 23:44:30 +02:00
parent 19349acdcf
commit 2a7533268c
4 changed files with 6 additions and 6 deletions

View File

@@ -75,7 +75,7 @@ void FinishIncludePaths (void)
AddSubSearchPathFromEnv (IncSearchPath, "CC65_HOME", "asminc");
/* Add some compiled-in search paths if defined at compile time. */
#if defined(CA65_INC) && !defined(_WIN32)
#if defined(CA65_INC) && !defined(_WIN32) && !defined(_AMIGA)
AddSearchPath (IncSearchPath, CA65_INC);
#endif