Selaa lähdekoodia

* fixed copy/paste bug that caused the default target OS to be always set
to AIX on Linux PPC32/64 platforms

git-svn-id: trunk@20854 -

Jonas Maebe 13 vuotta sitten
vanhempi
commit
e9d52f7b95
1 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. 4 4
      compiler/systems/i_aix.pas

+ 4 - 4
compiler/systems/i_aix.pas

@@ -157,13 +157,13 @@ unit i_aix;
 
 initialization
 {$ifdef CPUPOWERPC32}
-  {$ifdef linux}
+  {$ifdef aix}
     set_source_info(system_powerpc_aix_info);
-  {$endif linux}
+  {$endif aix}
 {$endif CPUPOWERPC32}
 {$ifdef CPUPOWERPC64}
-  {$ifdef linux}
+  {$ifdef aix}
     set_source_info(system_powerpc64_aix_info);
-  {$endif linux}
+  {$endif aix}
 {$endif CPUPOWERPC64}
 end.