aboutsummaryrefslogtreecommitdiff
path: root/stage2
diff options
context:
space:
mode:
Diffstat (limited to 'stage2')
-rw-r--r--stage2/BasicBuild.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/stage2/BasicBuild.scala b/stage2/BasicBuild.scala
index e82eeb4..37602b2 100644
--- a/stage2/BasicBuild.scala
+++ b/stage2/BasicBuild.scala
@@ -134,9 +134,8 @@ class Build(val context: Context) extends Dependency with TriggerLoop{
sourcesChanged || transitiveDependencies.map(_.updated).fold(false)(_ || _)
}
- private object cacheCompileBasicBuild extends Cache[File]
- def compile: File = cacheCompileBasicBuild{
- //println(transitiveDependencies.filter(_.updated).mkString("\n"))
+ private object compileCache extends Cache[File]
+ def compile: File = compileCache{
lib.compile(
updated,
sourceFiles, compileTarget, dependencyClasspath, scalacOptions,