소스 검색

* 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 년 전
부모
커밋
e9d52f7b95
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      compiler/systems/i_aix.pas

+ 4 - 4
compiler/systems/i_aix.pas

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