From 8b972b7b6a8dd762031f39fbfc1f56fcc07f49f0 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 14 Oct 1998 11:03:55 +0000 Subject: [PATCH] * Forgot to dereference a pointer. --- compiler/link.pas | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/compiler/link.pas b/compiler/link.pas index 819979a13d..786eeef12d 100644 --- a/compiler/link.pas +++ b/compiler/link.pas @@ -462,7 +462,7 @@ begin aktglobalswitches:=aktglobalswitches+[cs_link_extern]; end; s:=target_ar.arcmd; - Replace(s,'$LIB',current_module^.path+current_module^.staticlibfilename^); + Replace(s,'$LIB',current_module^.path^+current_module^.staticlibfilename^); if filescnt=0 then Replace(s,'$FILES',current_module^.objfilename^) else @@ -499,7 +499,10 @@ end; end. { $Log$ - Revision 1.31 1998-10-14 11:01:21 daniel + Revision 1.32 1998-10-14 11:03:55 daniel + * Forgot to dereference a pointer. + + Revision 1.31 1998/10/14 11:01:21 daniel * Staticlibfilename no longer not include a path. Correction when calling ar.