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
3e0ea4f4
Commit
3e0ea4f4
authored
Jan 30, 2010
by
Francois-Rene Rideau
Browse files
Actually add the *.conf.d directories to the (default) configuration inheritance list.
Oops. Thanks to PvE for noticing I had missed it.
parent
c0adaf95
Changes
1
Hide whitespace changes
Inline
Side-by-side
asdf.lisp
View file @
3e0ea4f4
...
...
@@ -2196,7 +2196,9 @@ with a different configuration, so the configuration would be re-read then."
(
defparameter
*default-source-registries*
'
(
process-environment-source-registry
process-user-source-registry
process-user-source-registry-directory
process-system-source-registry
process-system-source-registry-directory
process-default-source-registry
))
(
defun
user-configuration-pathname
()
...
...
@@ -2222,9 +2224,15 @@ with a different configuration, so the configuration would be re-read then."
(
defun
process-user-source-registry
(
&key
inherit
collect
)
(
process-source-registry
(
user-source-registry-pathname
)
:inherit
inherit
:collect
collect
))
(
defun
process-user-source-registry-directory
(
&key
inherit
collect
)
(
process-source-registry
(
user-source-registry-directory-pathname
)
:inherit
inherit
:collect
collect
))
(
defun
process-system-source-registry
(
&key
inherit
collect
)
(
process-source-registry
(
system-source-registry-pathname
)
:inherit
inherit
:collect
collect
))
(
defun
process-system-source-registry-directory
(
&key
inherit
collect
)
(
process-source-registry
(
system-source-registry-directory-pathname
)
:inherit
inherit
:collect
collect
))
(
defun
process-default-source-registry
(
&key
inherit
collect
)
(
declare
(
ignore
inherit
collect
))
nil
)
...
...
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