From 1e25da8a72728a01a95cf22c70c93738bb9ce2dd Mon Sep 17 00:00:00 2001 From: Gary King <gwking@franz.com> Date: Thu, 9 Jul 2009 12:05:31 -0400 Subject: [PATCH] Patch for XCVB compatibility from Fare --- asdf.lisp | 2 ++ build.xcvb | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 build.xcvb diff --git a/asdf.lisp b/asdf.lisp index 8ee028ab..51efdb82 100644 --- a/asdf.lisp +++ b/asdf.lisp @@ -42,6 +42,8 @@ ;;; the problem with writing a defsystem replacement is bootstrapping: ;;; we can't use defsystem to compile it. Hence, all in one file +#+xcvb (module ()) + (defpackage #:asdf (:export #:defsystem #:oos #:operate #:find-system #:run-shell-command #:system-definition-pathname #:find-component ; miscellaneous diff --git a/build.xcvb b/build.xcvb new file mode 100644 index 00000000..6b2129ee --- /dev/null +++ b/build.xcvb @@ -0,0 +1,9 @@ +#+xcvb +(module + (:fullname "asdf" + :author ("Daniel Barlow and contributors") + :licence "MIT" ;; MIT-style license. See asdf.lisp + :description "ASDF" + :long-description "Another System Definition Facility." + :depends-on ("asdf") + :build-image nil)) -- GitLab