fixed linux being broken

This commit is contained in:
David Anderson 2007-08-03 17:29:59 +00:00
parent 164780363b
commit bbc6af247b
2 changed files with 2 additions and 0 deletions

View File

@ -88,6 +88,7 @@ public override string BuildModule(Module module)
Process p = Process.Start(info);
p.WaitForExit();
p.Close();
info.WorkingDirectory = PropSlashes(dir);
info.FileName = m_Cfg.DevenvPath();
@ -113,6 +114,7 @@ public override string BuildModule(Module module)
info.FileName = dlsym;
info.Arguments = file;
info.UseShellExecute = false;
info.RedirectStandardOutput = true;
p = Process.Start(info);
p.WaitForExit();