Skip to content
Snippets Groups Projects
Commit fc3a2e03 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Fix bug in my previous fix to detect-os.

parent 0117d8ca
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ except on ABCL where it might change between FASL compilation and runtime."
(:genera . os-genera-p) (:os-oldmac . os-oldmac-p))
:when (and (or (not o) (eq feature :os-macosx)) (funcall detect))
:do (setf o feature) (pushnew feature *features*)
:else :do (remove feature *features*)
:else :do (setf *features* (remove feature *features*))
:finally
(return (or o (error "Congratulations for trying ASDF on an operating system~%~
that is neither Unix, nor Windows, nor Genera, nor even old MacOS.~%Now you port it.")))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment