From 55cc431511029abfd7f1cc6b786e9688494f3992 Mon Sep 17 00:00:00 2001
From: Edi Weitz <>
Date: Wed, 5 May 2004 18:32:57 +0000
Subject: [PATCH] replace :cormanlisp with :broken-fasl-loader

---
 asdf.lisp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/asdf.lisp b/asdf.lisp
index 1d9b4fcf..d53cdb16 100644
--- a/asdf.lisp
+++ b/asdf.lisp
@@ -1,4 +1,4 @@
-;;; This is asdf: Another System Definition Facility.  $Revision: 1.83 $
+;;; This is asdf: Another System Definition Facility.  $Revision: 1.84 $
 ;;;
 ;;; Feedback, bug reports, and patches are all welcome: please mail to
 ;;; <cclan-list@lists.sf.net>.  But note first that the canonical
@@ -107,7 +107,7 @@
 
 (in-package #:asdf)
 
-(defvar *asdf-revision* (let* ((v "$Revision: 1.83 $")
+(defvar *asdf-revision* (let* ((v "$Revision: 1.84 $")
 			       (colon (or (position #\: v) -1))
 			       (dot (position #\. v)))
 			  (and v colon dot 
@@ -702,7 +702,7 @@ system."))
 ;;; perform is required to check output-files to find out where to put
 ;;; its answers, in case it has been overridden for site policy
 (defmethod perform ((operation compile-op) (c cl-source-file))
-  #-:cormanlisp
+  #-:broken-fasl-loader
   (let ((source-file (component-pathname c))
 	(output-file (car (output-files operation c))))
     (multiple-value-bind (output warnings-p failure-p)
@@ -727,8 +727,8 @@ system."))
 	(error 'compile-error :component c :operation operation)))))
 
 (defmethod output-files ((operation compile-op) (c cl-source-file))
-  #-:cormanlisp (list (compile-file-pathname (component-pathname c)))
-  #+:cormanlisp (list (component-pathname c)))
+  #-:broken-fasl-loader (list (compile-file-pathname (component-pathname c)))
+  #+:broken-fasl-loader (list (component-pathname c)))
 
 (defmethod perform ((operation compile-op) (c static-file))
   nil)
-- 
GitLab