|
@@ -113,7 +113,7 @@ begin
|
|
begin
|
|
begin
|
|
s:=HPath.Str;
|
|
s:=HPath.Str;
|
|
if s<>'' then
|
|
if s<>'' then
|
|
- LinkRes.Add('SEARCH_DIR('+maybequoted(s)+')');
|
|
|
|
|
|
+ LinkRes.Add('SEARCH_DIR('+PathConv(maybequoted(s))+')');
|
|
HPath:=TStringListItem(HPath.Next);
|
|
HPath:=TStringListItem(HPath.Next);
|
|
end;
|
|
end;
|
|
|
|
|
|
@@ -129,7 +129,7 @@ begin
|
|
{ vlink doesn't use SEARCH_DIR for object files }
|
|
{ vlink doesn't use SEARCH_DIR for object files }
|
|
if not(cs_link_on_target in aktglobalswitches) then
|
|
if not(cs_link_on_target in aktglobalswitches) then
|
|
s:=FindObjectFile(s,'',false);
|
|
s:=FindObjectFile(s,'',false);
|
|
- LinkRes.AddFileName(maybequoted(s));
|
|
|
|
|
|
+ LinkRes.AddFileName(PathConv(maybequoted(s)));
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
|
|
@@ -145,7 +145,7 @@ begin
|
|
while not StaticLibFiles.Empty do
|
|
while not StaticLibFiles.Empty do
|
|
begin
|
|
begin
|
|
S:=StaticLibFiles.GetFirst;
|
|
S:=StaticLibFiles.GetFirst;
|
|
- LinkRes.AddFileName(maybequoted(s));
|
|
|
|
|
|
+ LinkRes.AddFileName(PathConv(maybequoted(s)));
|
|
end;
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
|