From 92a73ff688cf94d3ccc8d11a9013cb5652c2377d Mon Sep 17 00:00:00 2001 From: Christophe Rhodes <csr21@cantab.net> Date: Mon, 19 May 2003 14:26:15 +0000 Subject: [PATCH] Remove call to PROVIDE from #+(and sbcl sbcl-hooks-require) section. It becomes the responsibility of individual systems in sbcl's contrib/ to call provide. No change for any other environment. --- asdf.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/asdf.lisp b/asdf.lisp index fb69ea68..53a0296f 100644 --- a/asdf.lisp +++ b/asdf.lisp @@ -1,4 +1,4 @@ -;;; This is asdf: Another System Definition Facility. $Revision: 1.71 $ +;;; This is asdf: Another System Definition Facility. $Revision: 1.72 $ ;;; ;;; Feedback, bug reports, and patches are all welcome: please mail to ;;; <cclan-list@lists.sf.net>. But note first that the canonical @@ -89,7 +89,7 @@ (in-package #:asdf) -(defvar *asdf-revision* (let* ((v "$Revision: 1.71 $") +(defvar *asdf-revision* (let* ((v "$Revision: 1.72 $") (colon (or (position #\: v) -1)) (dot (position #\. v))) (and v colon dot @@ -1037,7 +1037,7 @@ output to *trace-output*. Returns the shell's exit code." (let ((system (asdf:find-system name nil))) (when system (asdf:operate 'asdf:load-op name) - (provide name)))) + t))) (pushnew '(merge-pathnames "systems/" -- GitLab