fix, args for the make process passed with leading spaces

This commit is contained in:
Basile Burg 2022-05-15 10:06:38 +02:00
parent 4ed8b33e1e
commit f9d7fdec28
1 changed files with 3 additions and 3 deletions

View File

@ -518,11 +518,11 @@ begin
if not fRuleIndex.equals(0) then
fMakeProc.Parameters.Add(fRules[fRuleIndex]);
if makeProjectOptions.keepGoing then
fMakeProc.Parameters.Add(' -k');
fMakeProc.Parameters.Add('-k');
if makeProjectOptions.quiet then
fMakeProc.Parameters.Add(' -q');
fMakeProc.Parameters.Add('-q');
if makeProjectOptions.numThreads > 1 then
fMakeProc.Parameters.Add(' -j' + makeProjectOptions.numThreads.ToString());
fMakeProc.Parameters.Add('-j' + makeProjectOptions.numThreads.ToString());
fMakeProc.Options := fMakeProc.Options + [poStderrToOutPut, poUsePipes];
fMakeProc.ShowWindow := swoHIDE;