From: Chris Hanson Date: Fri, 8 Jun 2007 05:58:53 +0000 (+0000) Subject: Don't use WITH-LOADER-BASE-URI here -- it doesn't work correctly. For X-Git-Tag: 20090517-FFI~543 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=9c0c7d1e8cef138e595a49c07483e39d9f2572b6;p=mit-scheme.git Don't use WITH-LOADER-BASE-URI here -- it doesn't work correctly. For the moment, I'm reverting the change, until I figure out the right fix. --- diff --git a/v7/src/compiler/base/make.scm b/v7/src/compiler/base/make.scm index 8669e03cc..ccfd4222e 100644 --- a/v7/src/compiler/base/make.scm +++ b/v7/src/compiler/base/make.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: make.scm,v 4.128 2007/06/06 20:03:24 cph Exp $ +$Id: make.scm,v 4.129 2007/06/08 05:58:53 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -33,7 +33,10 @@ USA. architecture-name (load-option 'COMPRESS) (load-option 'RB-TREE) - (with-loader-base-uri (system-library-uri "compiler/") + ((access with-directory-rewriting-rule + (->environment '(RUNTIME COMPILER-INFO))) + (working-directory-pathname) + (pathname-as-directory "compiler") (lambda () (load-package-set "compiler"))) (add-subsystem-identification! "LIAR" '(4 118))) \ No newline at end of file