summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/compiler/scala/tools/nsc/backend/msil/GenMSIL.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/backend/msil/GenMSIL.scala b/src/compiler/scala/tools/nsc/backend/msil/GenMSIL.scala
index 6de7c021c7..a4b5a84d5d 100644
--- a/src/compiler/scala/tools/nsc/backend/msil/GenMSIL.scala
+++ b/src/compiler/scala/tools/nsc/backend/msil/GenMSIL.scala
@@ -460,8 +460,7 @@ abstract class GenMSIL extends SubComponent {
if (settings.debug.value)
log("Executing command: " + cmd)
try {
- val p = Runtime.getRuntime().exec(cmd)
- p.waitFor() // wait until ilasm is done
+ Runtime.getRuntime().exec(cmd)
} catch {
case _ =>
Console.println("Cannot run command: " + cmd)