X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fasdf%2Fasdf.lisp;h=5f8a599102f5aa099a05d90afd8e8f9ec2c27568;hb=76874d05d623e0001cfcf23d2c74f78295ba6cee;hp=dc8ff7ca3820f17337646cf53c28a2fb6b81777e;hpb=0b287178b4aeab61deccf844a89a5f4419ab66ab;p=sbcl.git diff --git a/contrib/asdf/asdf.lisp b/contrib/asdf/asdf.lisp index dc8ff7c..5f8a599 100644 --- a/contrib/asdf/asdf.lisp +++ b/contrib/asdf/asdf.lisp @@ -1,4 +1,4 @@ -;;; This is asdf: Another System Definition Facility. 1.77 +;;; This is asdf: Another System Definition Facility. 1.79 ;;; ;;; Feedback, bug reports, and patches are all welcome: please mail to ;;; . But note first that the canonical @@ -106,7 +106,7 @@ (in-package #:asdf) -(defvar *asdf-revision* (let* ((v "1.77") +(defvar *asdf-revision* (let* ((v "1.79") (colon (or (position #\: v) -1)) (dot (position #\. v))) (and v colon dot @@ -118,7 +118,7 @@ (defvar *compile-file-warnings-behaviour* :warn) (defvar *compile-file-failure-behaviour* #+sbcl :error #-sbcl :warn) -(defvar *verbose-out* *trace-output*) +(defvar *verbose-out* nil) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; utility stuff @@ -803,7 +803,7 @@ system.")) :original-initargs args args)) (*verbose-out* (if (getf args :verbose t) - *verbose-out* + *trace-output* (make-broadcast-stream))) (system (if (typep system 'component) system (find-system system))) (steps (traverse op system))) @@ -1099,3 +1099,5 @@ output to *verbose-out*. Returns the shell's exit code." *central-registry*) (pushnew 'module-provide-asdf sb-ext:*module-provider-functions*)) + +(provide 'asdf)