From 5623106682a405413b989a8741f2481f8d3e6163 Mon Sep 17 00:00:00 2001 From: Stelian Ionescu Date: Sat, 10 Oct 2009 23:39:12 +0200 Subject: [PATCH] Split system BORDEAUX-THREADS-TEST into its own .asd --- bordeaux-threads-test.asd | 9 +++++++++ bordeaux-threads.asd | 8 +------- 2 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 bordeaux-threads-test.asd diff --git a/bordeaux-threads-test.asd b/bordeaux-threads-test.asd new file mode 100644 index 0000000..5bff549 --- /dev/null +++ b/bordeaux-threads-test.asd @@ -0,0 +1,9 @@ +#| +Copyright 2006,2007 Greg Pfeil + +Distributed under the MIT license (see LICENSE file) +|# + +(defsystem :bordeaux-threads-test + :depends-on (:bordeaux-threads :lift) + :components ((:module "test" :components ((:file "bordeaux-threads-test"))))) diff --git a/bordeaux-threads.asd b/bordeaux-threads.asd index f960530..dd5f6e8 100644 --- a/bordeaux-threads.asd +++ b/bordeaux-threads.asd @@ -27,9 +27,7 @@ Distributed under the MIT license (see LICENSE file) (and clisp mt)) (pushnew :thread-support *features*)) -(defsystem bordeaux-threads - :description "" - :long-description "" +(defsystem :bordeaux-threads :author "Greg Pfeil " ;; based on original Bordeaux-MP spec by Dan Barlow ;; contributors: @@ -76,7 +74,3 @@ Distributed under the MIT license (see LICENSE file) (defmethod operation-done-p ((op test-op) (c (eql (find-system :bordeaux-threads)))) (values nil)) - -(defsystem bordeaux-threads-test - :depends-on (:bordeaux-threads :lift) - :components ((:module "test" :components ((:file "bordeaux-threads-test"))))) -- 2.11.4.GIT