Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Didier Verna
asdf
Commits
c69ad702
Commit
c69ad702
authored
Sep 17, 2016
by
Francois-Rene Rideau
Browse files
On CMUCL, upcase module name before you require them.
parent
96ea9270
Changes
1
Hide whitespace changes
Inline
Side-by-side
operate.lisp
View file @
c69ad702
...
...
@@ -198,7 +198,7 @@ the implementation's REQUIRE rather than by internal ASDF mechanisms."))
(
let*
((
module
(
or
(
required-module
s
)
(
coerce-name
s
)))
(
*modules-being-required*
(
cons
module
*modules-being-required*
)))
(
assert
(
null
(
component-children
s
)))
(
require
module
)))
(
require
#-
cmucl
module
#+
cmucl
(
string-upcase
module
)
)))
(
defmethod
resolve-dependency-combination
(
component
(
combinator
(
eql
:require
))
arguments
)
(
unless
(
and
(
length=n-p
arguments
1
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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