mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 00:19:19 +02:00
* Bug fixed in linking: compiling files on another drive than the one you
currently use you is done correctly.
This commit is contained in:
parent
417eb205d6
commit
3197e354cd
@ -308,9 +308,8 @@ Var
|
|||||||
begin
|
begin
|
||||||
if s<>'' then
|
if s<>'' then
|
||||||
begin
|
begin
|
||||||
if (pos('\',s)=0) and (pos('/',s)=0) then
|
if not(s[1] in ['a'..'z','A'..'Z','/','\']) then
|
||||||
WriteLn(Linkresponse,'.'+DirSep+s)
|
Write(Linkresponse,'.',DirSep);
|
||||||
else
|
|
||||||
WriteLn(Linkresponse,s);
|
WriteLn(Linkresponse,s);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
@ -610,7 +609,11 @@ end;
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.49 1999-03-25 16:55:30 peter
|
Revision 1.50 1999-04-25 14:31:48 daniel
|
||||||
|
* Bug fixed in linking: compiling files on another drive than the one you
|
||||||
|
currently use you is done correctly.
|
||||||
|
|
||||||
|
Revision 1.49 1999/03/25 16:55:30 peter
|
||||||
+ unitpath,librarypath,includepath,objectpath directives
|
+ unitpath,librarypath,includepath,objectpath directives
|
||||||
|
|
||||||
Revision 1.48 1999/03/23 16:22:43 peter
|
Revision 1.48 1999/03/23 16:22:43 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user