Browse Source

* fixed misplaced endif that caused the default target not be set when
(hypothetically) running the compiler on Darwin/ARM

git-svn-id: trunk@20662 -

Jonas Maebe 13 years ago
parent
commit
86265534d0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/systems/i_bsd.pas

+ 1 - 1
compiler/systems/i_bsd.pas

@@ -849,10 +849,10 @@ initialization
   {$ifdef Darwin}
      set_source_info(system_powerpc64_darwin_info);
   {$endif Darwin}
+{$endif powerpc64}
 {$ifdef cpuarm}
   {$ifdef Darwin}
      set_source_info(system_arm_darwin_info);
   {$endif Darwin}
 {$endif cpuarm}
-{$endif powerpc64}
 end.