sbclrc: Rename inferred-system-depends-on to system-depends-on.

master
Pierre Neidhardt 2019-08-26 12:28:25 +02:00
parent ddb154d897
commit f056b0656f
1 changed files with 3 additions and 3 deletions

View File

@ -48,9 +48,9 @@
(push s symbols)))
symbols))
(export 'inferred-system-depends-on)
(declaim (ftype (function (string)) inferred-system-depends-on))
(defun inferred-system-depends-on (system)
(export 'system-depends-on)
(declaim (ftype (function (string)) system-depends-on))
(defun system-depends-on (system)
"List SYSTEM dependencies, even if SYSTEM is an inferred system.
From: https://gitlab.common-lisp.net/asdf/asdf/issues/10#note_5018."
(let (depends)