* 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 -
This commit is contained in:
Jonas Maebe 2012-04-12 09:36:46 +00:00
parent e74b6087b3
commit e9d52f7b95

View File

@ -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.