mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 16:29:32 +02:00
Use double quote instead of single quote to pass extra options string: fix for win32
git-svn-id: trunk@5318 -
This commit is contained in:
parent
897fe72887
commit
0590933a25
@ -351,7 +351,7 @@ begin
|
|||||||
ExtraOptions);
|
ExtraOptions);
|
||||||
if Result<>mrOk then exit;
|
if Result<>mrOk then exit;
|
||||||
if ExtraOptions<>'' then
|
if ExtraOptions<>'' then
|
||||||
Tool.CmdLineParams:=Tool.CmdLineParams+' OPT='''+ExtraOptions+'''';
|
Tool.CmdLineParams:=Tool.CmdLineParams+' OPT="'+ExtraOptions+'"';
|
||||||
// append target OS
|
// append target OS
|
||||||
if Options.TargetOS<>'' then
|
if Options.TargetOS<>'' then
|
||||||
Tool.CmdLineParams:=Tool.CmdLineParams+' OS_TARGET='+Options.TargetOS;
|
Tool.CmdLineParams:=Tool.CmdLineParams+' OS_TARGET='+Options.TargetOS;
|
||||||
|
Loading…
Reference in New Issue
Block a user