diff --git a/.gitignore b/.gitignore index 811f0304a917002af42150c13435e221d36d2770..193ca421c28c6964594930675a78546485067c24 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ lift-local.config *.lib *.o *.*fsl +*.bak diff --git a/asdf.lisp b/asdf.lisp index 22a3a9b4b1a1655cc731d170803912d2a5048edb..ef34f1059e15bffbac9d96961033cbad08638d16 100644 --- a/asdf.lisp +++ b/asdf.lisp @@ -1110,7 +1110,7 @@ to `~a` which is not a directory.~@:>" (error nil)) (dolist (kid (module-components c)) (handler-case - (appendf forced (traverse operation kid )) + (appendf forced (traverse operation kid)) (missing-dependency (condition) (if (eq (module-if-component-dep-fails c) :fail) @@ -1736,9 +1736,8 @@ output to `*verbose-out*`. Returns the shell's exit code." ;;; --------------------------------------------------------------------------- ;;; Portions of this code were once from SWANK / SLIME -(defparameter *centralize-lisp-binaries* - nil " -If true, compiled lisp files without an explicit mapping (see +(defparameter *centralize-lisp-binaries* nil + "If true, compiled lisp files without an explicit mapping (see \\*source-to-target-mappings\\*) will be placed in subdirectories of \\*default-toplevel-directory\\*. If false, then compiled lisp files without an explicitly mapping will be placed in subdirectories of @@ -1753,7 +1752,7 @@ See [implementation-specific-directory-name][] for details.") (defparameter *default-toplevel-directory* (merge-pathnames - (make-pathname :directory '(:relative ".fasls")) + (make-pathname :directory '(:relative ".cache" "common-lisp")) (truename (user-homedir-pathname))) "If \\*centralize-lisp-binaries\\* is true, then compiled lisp files without an explicit mapping \(see \\*source-to-target-mappings\\*\) will be placed in subdirectories of \\*default-toplevel-directory\\*.") @@ -1955,7 +1954,7 @@ applied by the plain `*source-to-target-mappings*`." (typecase component (cl-source-file t) (t nil))) - (let ((source (component-pathname component )) + (let ((source (component-pathname component)) (paths (call-next-method))) (output-files-for-system-and-operation (component-system component) operation component source paths))