summaryrefslogtreecommitdiff
blob: 30d855276c41c9634661310b37f53ed0b88fd867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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~