aboutsummaryrefslogtreecommitdiff
path: root/stage2/BasicBuild.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage2/BasicBuild.scala')
-rw-r--r--stage2/BasicBuild.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/stage2/BasicBuild.scala b/stage2/BasicBuild.scala
index bee58dd..47b1233 100644
--- a/stage2/BasicBuild.scala
+++ b/stage2/BasicBuild.scala
@@ -20,7 +20,7 @@ class Build(val context: Context) extends Dependency with TriggerLoop{
// library available to builds
implicit final val logger: Logger = context.logger
override final protected val lib: Lib = new Lib(logger)
-
+
// ========== general stuff ==========
def enableConcurrency = false
@@ -95,7 +95,7 @@ class Build(val context: Context) extends Dependency with TriggerLoop{
)
def triggerLoopFiles: Seq[File] = sources ++ transitiveDependencies.collect{ case b: TriggerLoop => b.triggerLoopFiles }.flatten
-
+
def localJars : Seq[File] =
Seq(projectDirectory ++ "/lib")
.filter(_.exists)
@@ -133,7 +133,7 @@ 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"))