diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2010-01-09 18:47:11 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2010-01-09 18:47:11 +0000 |
commit | 2200fda13f6e7061e9425bd92fdd3a93865dfab9 (patch) | |
tree | beea3955ba0be99f746a073ace7233db671f9d4f /devel | |
parent | 924042f29098ceaafa8d4336678313be724f2e92 (diff) | |
download | ports-2200fda13f6e7061e9425bd92fdd3a93865dfab9.tar.gz ports-2200fda13f6e7061e9425bd92fdd3a93865dfab9.zip |
Notes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cl-asdf/files/asdf-init.lisp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/cl-asdf/files/asdf-init.lisp b/devel/cl-asdf/files/asdf-init.lisp index 9faaf6e5a50d..351c24f4de3d 100644 --- a/devel/cl-asdf/files/asdf-init.lisp +++ b/devel/cl-asdf/files/asdf-init.lisp @@ -40,7 +40,7 @@ ;; ;; in your init file. ;; -;; Each Lisp implementation has it's own files where this can be done: +;; Each Lisp implementation has its own files where this can be done: ;; ;; CLISP: ;; %%PREFIX%%/lib/clisp/config.lisp @@ -68,9 +68,9 @@ ;; We mess around with asdf:output-files in interesting ways to ;; enforce a filesystem layout that works without multiple Lisp ;; implementations overwriting their fasls. Basically, each lib has -;; it's own directory in %%PREFIX%%/lib/common-lisp, initially +;; its own directory in %%PREFIX%%/lib/common-lisp, initially ;; containing its sources. Each fasl port will create an -;; implementation-specific subdirectory where all it's fasls go, for +;; implementation-specific subdirectory where all its fasls go, for ;; example ./cmuclfasl, ./clispfasl etc. ;; Additionally, all fasl files have the pathname-type "fasl", not @@ -123,7 +123,7 @@ (in-package :freebsd-asdf) -;;;; Pathes +;;;; Paths (defvar *asdf-pathname* "%%PREFIX%%/lib/common-lisp/asdf/asdf" @@ -150,7 +150,7 @@ should modify that in order to add other directories.") (defun lisp-specific-fasl-subdir () "Return the subdirectory in which fasl files for this Lisp -implementations should be stored, as a sting without any slashes. +implementations should be stored, as a string without any slashes. If no subdirectory for the current implementation is known, signal an error of type UNSUPPORTED-LISP-IMPLEMENTATION. |