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
b12a48c5
Commit
b12a48c5
authored
Sep 15, 2016
by
Robert Goldman
Browse files
Fix load crash on older MKCLs.
Recent patch relied on MKCL:GIT-DESCRIBE-THIS-MKCL, which is not uniformly available.
parent
e173a14d
Changes
1
Hide whitespace changes
Inline
Side-by-side
uiop/os.lisp
View file @
b12a48c5
...
...
@@ -229,7 +229,12 @@ then returning the non-empty string value of the variable"
(
multiple-value-bind
(
major
minor
)
(
sct:get-system-version
"System"
)
(
format
nil
"~D.~D"
major
minor
))
#+
mcl
(
subseq
s
8
)
; strip the leading "Version "
#+
mkcl
(
or
(
mkcl:git-describe-this-mkcl
)
s
)
;; seems like there should be a shorter way to do this, like ACALL.
#+
mkcl
(
or
(
let
((
fname
(
find-symbol*
'
#:git-describe-this-mkcl
:mkcl
nil
)))
(
when
(
and
fname
(
fboundp
fname
))
(
funcall
fname
)))
s
)
s
))))
(
defun
implementation-identifier
()
...
...
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