Browse Source

* Flush text output before calling external programs

git-svn-id: trunk@15917 -
joost 15 years ago
parent
commit
1a7cbeeb88
1 changed files with 1 additions and 0 deletions
  1. 1 0
      utils/fppkg/pkghandler.pp

+ 1 - 0
utils/fppkg/pkghandler.pp

@@ -156,6 +156,7 @@ end;
 Function TPackageHandler.ExecuteProcess(Const Prog,Args:String):Integer;
 begin
   Log(vlCommands,SLogExecute,[Prog,Args]);
+  Flush(StdOut);
   Result:=SysUtils.ExecuteProcess(Prog,Args);
 end;