Browse Source

fixed staticlibprefix for Amiga and MorphOS

git-svn-id: trunk@26127 -
Károly Balogh 11 years ago
parent
commit
34702dbfc5
2 changed files with 3 additions and 3 deletions
  1. 2 2
      compiler/systems/i_amiga.pas
  2. 1 1
      compiler/systems/i_morph.pas

+ 2 - 2
compiler/systems/i_amiga.pas

@@ -50,7 +50,7 @@ unit i_amiga;
             resobjext    : '.or';
             sharedlibext : '.library';
             staticlibext : '.a';
-            staticlibprefix : 'lib';
+            staticlibprefix : 'libp';
             sharedlibprefix : '';
             sharedClibext : '.library';
             staticClibext : '.a';
@@ -112,7 +112,7 @@ unit i_amiga;
             resobjext    : '.or';
             sharedlibext : '.library';
             staticlibext : '.a';
-            staticlibprefix : 'lib';
+            staticlibprefix : 'libp';
             sharedlibprefix : '';
             sharedClibext : '.library';
             staticClibext : '.a';

+ 1 - 1
compiler/systems/i_morph.pas

@@ -50,7 +50,7 @@ unit i_morph;
             resobjext    : '.or';
             sharedlibext : '.library';
             staticlibext : '.a';
-            staticlibprefix : 'lib';
+            staticlibprefix : 'libp';
             sharedlibprefix : '';
             sharedClibext : '.library';
             staticClibext : '.a';