aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/project/Build.scala b/project/Build.scala
index b3a1548d6..5adc69d26 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -110,7 +110,7 @@ object DottyBuild extends Build {
file <- attList.map(_.data)
path = file.getAbsolutePath
prefix = if(path.endsWith(".jar")) "p" else "a"
- } yield "-Xbootclasspath/"+ prefix +":" + path
+ } yield "-Xbootclasspath/" + prefix + ":" + path
// dotty itself needs to be in the bootclasspath
val fullpath = ("-Xbootclasspath/a:" + bin) :: path.toList
// System.err.println("BOOTPATH: " + fullpath)
@@ -121,7 +121,7 @@ object DottyBuild extends Build {
else
List()
val res = agentOptions ::: travis_build ::: fullpath
- println("Running with javaOptions: " +res)
+ println("Running with javaOptions: " + res)
res
}
)