From 4819e75e8a57a78ed3bb7427d8d17c46710f9140 Mon Sep 17 00:00:00 2001 From: Dmitry Petrashko Date: Sat, 20 Feb 2016 14:22:20 +0100 Subject: Dotty: actually put dotty.jar into bootclasspath. Partest used to run tests with Dotty, but stopped at some moment. I guess this line may have been deleted at some merge conflict. --- project/Build.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'project') diff --git a/project/Build.scala b/project/Build.scala index a4e6551d7..b7822907d 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -177,7 +177,7 @@ object DottyBuild extends Build { path = file.getAbsolutePath } yield "-Xbootclasspath/p:" + path // dotty itself needs to be in the bootclasspath - val fullpath = ("-Xbootclasspath/a:" + bin) :: path.toList + val fullpath = ("-Xbootclasspath/p:" + "dotty.jar") :: ("-Xbootclasspath/a:" + bin) :: path.toList // System.err.println("BOOTPATH: " + fullpath) val travis_build = // propagate if this is a travis build -- cgit v1.2.3