From 2236146a6a1b77a47d8dab607b6baf0170e3fd33 Mon Sep 17 00:00:00 2001 From: loesje_ Date: Tue, 29 Jan 2013 20:28:25 +0000 Subject: [PATCH] * Without this fix, IBTool sometimes closes Lazaruss stdOut, which leads to disk full error messages git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2643 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- components/iphonelazext/lazfilesutils.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/iphonelazext/lazfilesutils.pas b/components/iphonelazext/lazfilesutils.pas index ac91216c4..69d399ad3 100644 --- a/components/iphonelazext/lazfilesutils.pas +++ b/components/iphonelazext/lazfilesutils.pas @@ -214,7 +214,7 @@ begin proc:=TProcess.Create(nil); try proc.CommandLine:=CmdLineUtf8; - //proc.WaitOnExit:=WaitExit; + proc.Options := [poUsePipes,poNoConsole,poStderrToOutPut]; proc.Execute; finally proc.Free;