From: espen Date: Fri, 6 Jul 2007 10:46:48 +0000 (+0000) Subject: Added missing dependency for sb-posix X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/ee57d221d4e667527d0d2f1570bef53e7622730c?hp=7d2f9e31f958431da7dc2ab4ce7091747ad96510 Added missing dependency for sb-posix --- diff --git a/tools/clg-tools.asd b/tools/clg-tools.asd index bbe1628..8ab71ab 100644 --- a/tools/clg-tools.asd +++ b/tools/clg-tools.asd @@ -11,8 +11,8 @@ (error "Standard behaviour of PARSE-NAMESTRING must be enabled by setting CUSTOM:*PARSE-NAMESTRING-ANSI* to non-NIL or running clisp with the -ansi option")) (defsystem clg-tools - :components ((:file "autoexport") - (:file "utils") - (:file "config" :depends-on ("utils")) - (:file "asdf-extensions" :depends-on ("utils")))) - + :depends-on (#+sbcl sb-posix) + :components ((:file "autoexport") + (:file "utils") + (:file "config" :depends-on ("utils")) + (:file "asdf-extensions" :depends-on ("utils"))))