Skip to content

Commit

Permalink
Fixed breakage on legacy implementations without ASDF 3 (see #6).
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneia committed Oct 5, 2016
1 parent f442f2b commit 3845b68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions maxpc-test.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;;;; System definition for MaxPC test and benchmark suite.

(in-package :asdf-user)
#+asdf3 (in-package :asdf-user)

(defsystem maxpc-test
:description
Expand All @@ -11,4 +11,4 @@
(:file "bench")
(:file "example-sexp"))
:depends-on ("maxpc")
:perform (test-op (o s) (uiop:symbol-call :maxpc.test :run-tests)))
:perform (test-op (o s) #+asdf3 (uiop:symbol-call :maxpc.test :run-tests)))
4 changes: 2 additions & 2 deletions maxpc.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;;;; System definition for MaxPC.

(in-package :asdf-user)
#+asdf3 (in-package :asdf-user)

(defsystem maxpc
:description
Expand Down Expand Up @@ -29,4 +29,4 @@
:depends-on ("packages" "primitives" "more"))
(:file "digit"
:depends-on ("packages" "primitives" "more")))
:in-order-to ((test-op (test-op :maxpc-test))))
:in-order-to (#+asdf3 (test-op (test-op :maxpc-test))))

0 comments on commit 3845b68

Please sign in to comment.