mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-30 17:19:20 +02:00
* correctly handle -XR (sysroot) paths with spaces under Darwin
git-svn-id: trunk@17421 -
This commit is contained in:
parent
129c565312
commit
9cd6a7ad85
@ -243,6 +243,7 @@ begin
|
||||
result:='/usr/lib/dylib1.o'
|
||||
end;
|
||||
end;
|
||||
result:=maybequoted(result);
|
||||
end;
|
||||
|
||||
|
||||
@ -320,7 +321,7 @@ begin
|
||||
(sysrootpath<>'') then
|
||||
begin
|
||||
LinkRes.Add('-syslibroot');
|
||||
LinkRes.Add(sysrootpath);
|
||||
LinkRes.Add(maybequoted(sysrootpath));
|
||||
end;
|
||||
|
||||
if (not isdll) or
|
||||
|
Loading…
Reference in New Issue
Block a user