Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
fcca08c2
Commit
fcca08c2
authored
Aug 29, 2014
by
Robert P. Goldman
Browse files
Fix from Fare for 1362875.
Add missing package use and missing function rename.
parent
4333ab31
Changes
1
Hide whitespace changes
Inline
Side-by-side
footer.lisp
View file @
fcca08c2
...
...
@@ -3,7 +3,8 @@
(
uiop/package:define-package
:asdf/footer
(
:recycle
:asdf/footer
:asdf
)
(
:use
:uiop/common-lisp
:uiop
:asdf/upgrade
:asdf/operate
:asdf/bundle
))
(
:use
:uiop/common-lisp
:uiop
:asdf/upgrade
:asdf/find-system
:asdf/operate
:asdf/bundle
))
(
in-package
:asdf/footer
)
;;;; Hook ASDF into the implementation's REQUIRE and other entry points.
...
...
@@ -33,7 +34,7 @@
(
if
(
eq
f
'module-provide-asdf
)
f
#'
(
lambda
(
name
)
(
let
((
l
(
multiple-value-list
(
funcall
f
name
))))
(
and
(
first
l
)
(
register-pre
-built
-system
(
coerce-name
name
)))
(
and
(
first
l
)
(
register-pre
loaded
-system
(
coerce-name
name
)))
(
values-list
l
))))))))
#+
cmu
;; Hook into the CMUCL herald.
...
...
@@ -58,4 +59,3 @@
(
when
*load-verbose*
(
asdf-message
";; ASDF, version ~a~%"
(
asdf-version
)))
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment