aboutsummaryrefslogtreecommitdiff
path: root/stage2/Lib.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage2/Lib.scala')
-rw-r--r--stage2/Lib.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/stage2/Lib.scala b/stage2/Lib.scala
index 1ecc99e..7adb33e 100644
--- a/stage2/Lib.scala
+++ b/stage2/Lib.scala
@@ -47,9 +47,9 @@ final class Lib(val logger: Logger) extends Stage1Lib(logger){
|| directory == (context.cbtHome ++ "/libraries/eval")
|| directory == (context.cbtHome ++ "/plugins/scalatest")
)
- new cbt.BasicBuild( context.copy( workingDirectory = start ) ) with BuildBuildWithoutEssentials
+ new cbt.ConcreteBuildBuildWithoutEssentials( context.copy( workingDirectory = start ) )
else
- new cbt.BasicBuild( context.copy( workingDirectory = start ) ) with BuildBuild
+ new cbt.ConcreteBuildBuild( context.copy( workingDirectory = start ) )
} catch {
case e:ClassNotFoundException if e.getMessage == buildClassName =>
throw new Exception(s"no class ${buildClassName} found in " ++ start.string)