summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-03-23 01:10:32 +0000
committernickysn <nickysn@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-03-23 01:10:32 +0000
commited531c3303ed55091285cc92f0c318e4aae92203 (patch)
tree1597d8e49471a59c886f3ff616058f1044014451
parent0684a9843dbc8c83d2fd1bef274b0a2067fe16f1 (diff)
downloadfpc-ed531c3303ed55091285cc92f0c318e4aae92203.tar.gz
* fixed passing of the wlib output file parameter (-o requires an equal sign)
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@30286 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/link.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/link.pas b/compiler/link.pas
index ad2404fd1a..d589ac5de5 100644
--- a/compiler/link.pas
+++ b/compiler/link.pas
@@ -1626,8 +1626,8 @@ Implementation
ar_watcom_wlib_omf_info : tarinfo =
( id : ar_watcom_wlib_omf;
- arfirstcmd : 'wlib -q -fo -c -b -o $OUTPUTLIB $FILES';
- arcmd : 'wlib -q -fo -c -b -o $OUTPUTLIB $LIB $FILES';
+ arfirstcmd : 'wlib -q -fo -c -b -n -o=$OUTPUTLIB $LIB $FILES';
+ arcmd : 'wlib -q -fo -c -b -o=$OUTPUTLIB $LIB $FILES';
arfinishcmd : ''
);