mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 00:19:37 +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);
|
||||
if Result<>mrOk then exit;
|
||||
if ExtraOptions<>'' then
|
||||
Tool.CmdLineParams:=Tool.CmdLineParams+' OPT='''+ExtraOptions+'''';
|
||||
Tool.CmdLineParams:=Tool.CmdLineParams+' OPT="'+ExtraOptions+'"';
|
||||
// append target OS
|
||||
if Options.TargetOS<>'' then
|
||||
Tool.CmdLineParams:=Tool.CmdLineParams+' OS_TARGET='+Options.TargetOS;
|
||||
|
Loading…
Reference in New Issue
Block a user