From e75dec916a9fbe378db4c58ef66b2b00531e6ce9 Mon Sep 17 00:00:00 2001
From: Kevin Rosenberg <>
Date: Fri, 30 Aug 2002 14:07:39 +0000
Subject: [PATCH] oops -- reversing auto-commit

---
 asdf.lisp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/asdf.lisp b/asdf.lisp
index 48e8e5e5..3057fcc7 100644
--- a/asdf.lisp
+++ b/asdf.lisp
@@ -1,4 +1,4 @@
-;;; This is asdf: Another System Definition Facility.  $Revision: 1.36 $
+;;; This is asdf: Another System Definition Facility.  $Revision: 1.37 $
 ;;;
 ;;; The canonical source for asdf is presently the cCLan CVS repository,
 ;;; at <URL:http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/cclan/asdf/>
@@ -86,7 +86,7 @@
 (in-package #:asdf)
 
 ;;; parse the cvs revision into something that might be vaguely useful.  
-(defvar *asdf-revision* (let* ((v "$Revision: 1.36 $")
+(defvar *asdf-revision* (let* ((v "$Revision: 1.37 $")
 			       (colon (position #\: v))
 			       (dot (position #\. v)))
 			  (and v colon dot 
@@ -604,8 +604,8 @@ system."))
   (let ((source-file (component-pathname c))
 	(output-file (car (output-files operation c))))
     (multiple-value-bind (output warnings-p failure-p)
-	(compile-file (truename source-file)
-		      :output-file (truename output-file))
+	(compile-file source-file
+		      :output-file output-file)
       (declare (ignore output))
       (when warnings-p
 	(case (operation-on-warnings operation)
-- 
GitLab