diff options
author | dos-reis <gdr@axiomatics.org> | 2007-10-10 19:23:38 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-10-10 19:23:38 +0000 |
commit | e662e66b323f896bc662d1ff326cb14cc5a4950a (patch) | |
tree | 6d83d2d5a658fa0aa19c5a10b395a532cb534ddb /src/interp/br-search.boot.pamphlet | |
parent | 9f6dc4ca4bd0168267275268dd74ad463d3508eb (diff) | |
download | open-axiom-e662e66b323f896bc662d1ff326cb14cc5a4950a.tar.gz |
src/input/
2007-10-10 Gabriel Dos Reis <gdr@cs.tamu.edu>
* Makefile.pamphlet (TESTSYS): Tidy.
src/interp/
2007-10-10 Gabriel Dos Reis <gdr@cs.tamu.edu>
* br-search.boot.pamphlet: Replace uses of $SPAROOT with
systemRootDirectory.
* construc.lisp.pamphlet: Likewise.
* daase.lisp.pamphlet: Likewise.
* i-toplev.boot.pamphlet: Likewise.
* patches.lisp.pamphlet: Likewise.
* pathname.boot.pamphlet: Likewise.
* util.lisp.pamphlet: Likewise.
* bookvol5.pamphlet: Remove $spadroot throughout.
(initroot): Remove.
(reroot): Lose argument.
* Makefile.pamphlet (makeint.lisp): Depend on
sys-driver.$(FASLEXT). Explicitly load it.
Miscellaneous cleanup.
Diffstat (limited to 'src/interp/br-search.boot.pamphlet')
-rw-r--r-- | src/interp/br-search.boot.pamphlet | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/interp/br-search.boot.pamphlet b/src/interp/br-search.boot.pamphlet index e232b231..d8e2cbea 100644 --- a/src/interp/br-search.boot.pamphlet +++ b/src/interp/br-search.boot.pamphlet @@ -975,19 +975,20 @@ dbGetCommentOrigin line == line grepSource key == - key = 'libdb => STRCONC($SPADROOT,'"/algebra/libdb.text") - key = 'gloss => STRCONC($SPADROOT,'"/algebra/glosskey.text") + key = 'libdb => STRCONC(systemRootDirectory(),'"/algebra/libdb.text") + key = 'gloss => STRCONC(systemRootDirectory(),'"/algebra/glosskey.text") key = $localLibdb => $localLibdb mkGrepTextfile MEMQ(key, '(_. a c d k o p x)) => 'libdb 'comdb -mkGrepTextfile s == STRCONC($SPADROOT,"/algebra/", STRINGIMAGE s, '".text") +mkGrepTextfile s == + STRCONC(systemRootDirectory(),"/algebra/", STRINGIMAGE s, '".text") mkGrepFile s == --called to generate a path name for a temporary grep file prefix := $standard or $aixTestSaturn => '"/tmp/" - STRCONC($SPADROOT,'"/algebra/") + STRCONC(systemRootDirectory(),'"/algebra/") suffix := getEnv '"SPADNUM" STRCONC(prefix, PNAME s,'".txt.", suffix) |