Skip to content

Commit 64ff407

Browse files
committed
Allow make-host-1 warnings if host SBCL is older than 2.1
Fixes lp#2064671
1 parent aa19161 commit 64ff407

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make-host-1.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
(declare (ignore c))
4848
(setq warnp 'warning))))
4949
(with-compilation-unit () ,@forms))
50-
(when (and (string>= (cl:lisp-implementation-version) "2")
50+
(when (and (string>= (cl:lisp-implementation-version) "2.1")
5151
(or warnp style-warnp) *fail-on-warnings*)
5252
(cerror "Proceed anyway"
5353
"make-host-1 stopped due to unexpected ~A." (or warnp style-warnp))))

0 commit comments

Comments
 (0)