From f9d7fdec28d121ead1bc6bf3c1a44308891a55a4 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 15 May 2022 10:06:38 +0200 Subject: [PATCH] fix, args for the make process passed with leading spaces --- src/u_makeproject.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/u_makeproject.pas b/src/u_makeproject.pas index 48bc7b6e..96f01cdf 100644 --- a/src/u_makeproject.pas +++ b/src/u_makeproject.pas @@ -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;