mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 05:43:19 -08:00
Fix ASDF:MAKE-BUILD not including everything due for inclusion
Tweak local class precedence order of BUNDLE-OPs for the benefit of BUNDLE-SUB-OPERATIONS.
This commit is contained in:
parent
9527eb6485
commit
ecdc7be73c
1 changed files with 3 additions and 3 deletions
|
|
@ -51,12 +51,12 @@
|
|||
(prologue-code :accessor monolithic-op-prologue-code)
|
||||
(epilogue-code :accessor monolithic-op-epilogue-code)))
|
||||
|
||||
(defclass monolithic-fasl-op (fasl-op monolithic-bundle-op) ())
|
||||
(defclass monolithic-fasl-op (monolithic-bundle-op fasl-op) ())
|
||||
|
||||
(defclass monolithic-lib-op (lib-op monolithic-bundle-op)
|
||||
(defclass monolithic-lib-op (monolithic-bundle-op lib-op)
|
||||
((type :initform :lib)))
|
||||
|
||||
(defclass monolithic-dll-op (dll-op monolithic-bundle-op)
|
||||
(defclass monolithic-dll-op (monolithic-bundle-op dll-op)
|
||||
((type :initform :dll)))
|
||||
|
||||
(defclass program-op (monolithic-bundle-op)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue