Skip to content

Commit 041207a

Browse files
committed
Fix auto scala-library
1 parent c676cda commit 041207a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

project/Build.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,8 @@ object Build {
264264
// Settings used when compiling dotty (both non-bootstrapped and bootstrapped)
265265
lazy val commonDottySettings = commonSettings ++ Seq(
266266
// Manually set the standard library to use
267-
autoScalaLibrary := false
267+
autoScalaLibrary := false,
268+
classpathOptions ~= (_.withAutoBoot(false).withFilterLibrary(false))
268269
)
269270

270271
lazy val commonScala2Settings = commonSettings ++ Seq(
@@ -284,7 +285,7 @@ object Build {
284285
scalaVersion := referenceVersion,
285286
excludeFromIDE := true,
286287

287-
disableDocSetting
288+
disableDocSetting,
288289
)
289290

290291
// Settings used when compiling dotty with a non-bootstrapped dotty

0 commit comments

Comments
 (0)