# HG changeset patch # User wenzelm # Date 1677489996 -3600 # Node ID ff43a524aa5d717a9968e99ad2611648fdde8049 # Parent aac23f2e7f3c4207bf6d5810aa163a17f385867a clarified system option: guard for testing, until the database layout has stabilized; diff -r aac23f2e7f3c -r ff43a524aa5d etc/options --- a/etc/options Sun Feb 26 21:17:53 2023 +0000 +++ b/etc/options Mon Feb 27 10:26:36 2023 +0100 @@ -183,7 +183,7 @@ option build_engine : string = "" -- "alternative session build engine" -option build_database : bool = false +option build_database_test : bool = false -- "expose state of build process via central database" diff -r aac23f2e7f3c -r ff43a524aa5d src/Pure/Tools/build_process.scala --- a/src/Pure/Tools/build_process.scala Sun Feb 26 21:17:53 2023 +0000 +++ b/src/Pure/Tools/build_process.scala Mon Feb 27 10:26:36 2023 +0100 @@ -515,7 +515,7 @@ } protected val database: Option[SQL.Database] = - if (!build_options.bool("build_database") || true /*FIXME*/) None + if (!build_options.bool("build_database_test")) None else if (store.database_server) Some(store.open_database_server()) else { val db = SQLite.open_database(Build_Process.Data.database)