Skip to content
Snippets Groups Projects
Commit 96ae6c9f authored by Kevin Rosenberg's avatar Kevin Rosenberg
Browse files

Added directory creation for compilation output files

parent b46aaa01
No related branches found
No related tags found
No related merge requests found
;;; 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)
......
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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment