Commit 96ae6c9f authored by Kevin Rosenberg's avatar Kevin Rosenberg
Browse files

Added directory creation for compilation output files

parent b46aaa01
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
;;; This is asdf: Another System Definition Facility.  $Revision: 1.42 $
;;; This is asdf: Another System Definition Facility.  $Revision: 1.43 $
;;;
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>.  But note first that the canonical
@@ -88,7 +88,7 @@
(in-package #:asdf)

;;; parse the cvs revision into something that might be vaguely useful.  
(defvar *asdf-revision* (let* ((v "$Revision: 1.42 $")
(defvar *asdf-revision* (let* ((v "$Revision: 1.43 $")
			       (colon (position #\: v))
			       (dot (position #\. v)))
			  (and v colon dot 
@@ -595,7 +595,8 @@ system."))
	       :initform *compile-file-failure-behaviour*)))

(defmethod perform :before ((operation compile-op) (c source-file))
  (setf (component-property c 'last-compiled) nil))
  (setf (component-property c 'last-compiled) nil)
  (map nil #'ensure-directories-exist (output-files operation c)))

(defmethod perform :after ((operation compile-op) (c source-file))
  (when (output-files operation c)
+6 −0
Original line number Diff line number Diff line
cl-asdf (1.43-1) unstable; urgency=low

  * New upstream version

 -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 17 Sep 2002 10:34:57 -0600

cl-asdf (1.42-2) unstable; urgency=low

  * Add reregister-common-lisp-implementations call when installing cl-asdf.