aboutsummaryrefslogtreecommitdiff
path: root/src/interp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-06-22 19:09:40 +0000
committerdos-reis <gdr@axiomatics.org>2011-06-22 19:09:40 +0000
commita6708e246ad91491dc54f3e6c1ae5f44f80b9fba (patch)
tree2d6b88001625ece08a55443bec8f77a66eb0fc6c /src/interp
parent44c634744821fb115b3a850851b805df2c316cb3 (diff)
downloadopen-axiom-a6708e246ad91491dc54f3e6c1ae5f44f80b9fba.tar.gz
Fix ECL-based build failure.
* interp/sys-driver.boot (loadExposureGroupData): Use getSystemModulePath to look up system modules.
Diffstat (limited to 'src/interp')
-rw-r--r--src/interp/sys-driver.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/sys-driver.boot b/src/interp/sys-driver.boot
index 13742c4e..a2f3f245 100644
--- a/src/interp/sys-driver.boot
+++ b/src/interp/sys-driver.boot
@@ -101,7 +101,7 @@ systemDatabaseDirectory() ==
loadExposureGroupData() ==
LOAD('"./exposed", KEYWORD::VERBOSE,false,
KEYWORD::IF_-DOES_-NOT_-EXIST,nil) => "done"
- LOAD(strconc(systemRootDirectory(),'"algebra/exposed"),
+ LOAD(getSystemModulePath '"exposed",
KEYWORD::VERBOSE,false,KEYWORD::IF_-DOES_-NOT_-EXIST,nil) => "done"
"failed"