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:
vincents 2004-03-17 20:04:13 +00:00
parent 897fe72887
commit 0590933a25

View File

@ -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;