diff -ur ch-util.orig/ch-util-test.asd ch-util/ch-util-test.asd
--- ch-util.orig/ch-util-test.asd	2005-07-24 13:44:50.000000000 -0500
+++ ch-util/ch-util-test.asd	2005-07-25 00:23:10.000000000 -0500
@@ -12,15 +12,15 @@
 ;;;;
 (defclass ch-util-test-cl-source-file (cl-source-file) ())
 
-(defparameter *fasl-directory*
-  (make-pathname :directory '(:relative #+sbcl "sbcl-fasl"
-			      #+openmcl "openmcl-fasl"
-			      #-(or sbcl openmcl) "fasl")))
+;; (defparameter *fasl-directory*
+;;   (make-pathname :directory '(:relative #+sbcl "sbcl-fasl"
+;; 			      #+openmcl "openmcl-fasl"
+;; 			      #-(or sbcl openmcl) "fasl")))
 
 (defmethod source-file-type ((c ch-util-test-cl-source-file) (s module)) "cl")
 
-(defmethod asdf::output-files :around ((operation compile-op) (c ch-util-test-cl-source-file))
-  (list (merge-pathnames *fasl-directory* (compile-file-pathname (component-pathname c)))))
+;; (defmethod asdf::output-files :around ((operation compile-op) (c ch-util-test-cl-source-file))
+;;   (list (merge-pathnames *fasl-directory* (compile-file-pathname (component-pathname c)))))
 
 (defsystem #:ch-util-test
   :name "ch-util-test"
Only in ch-util: ch-util-test.asd~
diff -ur ch-util.orig/ch-util.asd ch-util/ch-util.asd
--- ch-util.orig/ch-util.asd	2005-07-24 13:44:50.000000000 -0500
+++ ch-util/ch-util.asd	2005-07-25 00:23:00.000000000 -0500
@@ -12,15 +12,15 @@
 ;;;;
 (defclass ch-util-cl-source-file (cl-source-file) ())
 
-(defparameter *fasl-directory*
-  (make-pathname :directory '(:relative #+sbcl "sbcl-fasl"
-			      #+openmcl "openmcl-fasl"
-			      #-(or sbcl openmcl) "fasl")))
+;; (defparameter *fasl-directory*
+;;   (make-pathname :directory '(:relative #+sbcl "sbcl-fasl"
+;; 			      #+openmcl "openmcl-fasl"
+;; 			      #-(or sbcl openmcl) "fasl")))
 
 (defmethod source-file-type ((c ch-util-cl-source-file) (s module)) "cl")
 
-(defmethod asdf::output-files :around ((operation compile-op) (c ch-util-cl-source-file))
-  (list (merge-pathnames *fasl-directory* (compile-file-pathname (component-pathname c)))))
+;; (defmethod asdf::output-files :around ((operation compile-op) (c ch-util-cl-source-file))
+;;   (list (merge-pathnames *fasl-directory* (compile-file-pathname (component-pathname c)))))
 
 (defsystem #:ch-util
   :name "ch-util"
Only in ch-util: ch-util.asd~