From 28efd57fa7abbcea6a9b1c0436f320a64f6df355 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Fri, 16 Jan 2004 14:15:16 +0000 Subject: [PATCH] COMPILE-FILE needs to merge the given file with *default-pathname-defaults*. --- compiler/main.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/main.lisp b/compiler/main.lisp index e35132bed..d3fa014a4 100644 --- a/compiler/main.lisp +++ b/compiler/main.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.138 2003/12/02 16:59:13 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.139 2004/01/16 14:15:16 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1563,7 +1563,7 @@ (unless stuff (error "Can't compile with no source files.")) (mapcar #'(lambda (x) - (let ((x (pathname x))) + (let ((x (pathname (merge-pathnames x)))) (cond ((typep x 'logical-pathname) (try-with-type x "LISP" t)) ((probe-file x) x) -- GitLab