mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-18 07:12:26 -08:00
In the definition of binary-op, the produced defsystem did not have the right class.
This commit is contained in:
parent
d04530664e
commit
30eb66a335
1 changed files with 7 additions and 5 deletions
|
|
@ -394,11 +394,13 @@
|
|||
(software-type)
|
||||
(machine-type)
|
||||
(software-version))
|
||||
(pprint `(defsystem ,name-keyword
|
||||
:components ((:compiled-file ,(pathname-name fasl)))
|
||||
:lib ,(make-pathname :name (pathname-name library)
|
||||
:type (pathname-type library)))
|
||||
s))))
|
||||
(let ((*package* (find-package :keyword)))
|
||||
(pprint `(defsystem ,name-keyword
|
||||
:class asdf:prebuilt-system
|
||||
:components ((:compiled-file ,(pathname-name fasl)))
|
||||
:lib ,(make-pathname :name (pathname-name library)
|
||||
:type (pathname-type library)))
|
||||
s)))))
|
||||
|
||||
;;;
|
||||
;;; Final integration steps
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue