aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-driver.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/sys-driver.boot')
-rw-r--r--src/interp/sys-driver.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/sys-driver.boot b/src/interp/sys-driver.boot
index f708ca88..97ae53a6 100644
--- a/src/interp/sys-driver.boot
+++ b/src/interp/sys-driver.boot
@@ -178,11 +178,11 @@ restart() ==
initializeDatabases firstTime? ==
getOptionValue "build-initdb" => nil
- --initdb := getOptionValue "initial-db" => populateDBFromFile initdb
+ --initdb := getOptionValue "initial-db" => LOAD initdb
--FIXME: Ideally we should execute the previous line. The next line is
--FIXME: a short-term stopgap until build dependencies are in place.
if initdb := getOptionValue "initial-db" then
- populateDBFromFile initdb
+ LOAD initdb
not firstTime? => openDatabases()
fillDatabasesInCore()
mkLowerCaseConTable()