From a7fb2e60a65fa3c63975687bf528fa277be4f018 Mon Sep 17 00:00:00 2001 From: Stelian Ionescu Date: Mon, 30 Aug 2010 22:41:54 +0200 Subject: [PATCH] Don't :use ASDF, just import the necessary symbols Thanks to Zach Beane, who spotted this :) --- src/base/pkgdcl.lisp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/base/pkgdcl.lisp b/src/base/pkgdcl.lisp index 4697256..e56fcf2 100644 --- a/src/base/pkgdcl.lisp +++ b/src/base/pkgdcl.lisp @@ -54,7 +54,10 @@ )) (defpackage :iolib.asdf - (:use :iolib.base :asdf) + (:use :iolib.base) + (:import-from :asdf #:defsystem #:find-system + #:oos #:perform #:test-op #:load-op #:compile-op + #:operation-done-p) ;; ASDF components (:export #:muffled-source-file #:iolib-source-file)) -- 2.11.4.GIT