Skip to content
Snippets Groups Projects
Commit 989670e5 authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Refined the earlier warning about BUNDLE-OP.

It turns out it's only the BASIC-FASL-OP, not all the BUNDLE-OPs, that's
broken on Mac OSX with ABCL and ECL.  Refined the check.
parent 628b16a9
No related branches found
No related tags found
No related merge requests found
...@@ -493,8 +493,8 @@ ...@@ -493,8 +493,8 @@
#+(and (not asdf-use-unsafe-mac-bundle-op) #+(and (not asdf-use-unsafe-mac-bundle-op)
(or (and ecl darwin) (and abcl darwin))) (or (and ecl darwin) (and abcl darwin)))
(defmethod perform :before ((op bundle-op) c) (defmethod perform :before ((op basic-fasl-op) c)
(declare (ignorable op c)) (declare (ignorable op c))
(unless (uiop:featurep :asdf-use-unsafe-mac-bundle-op) (unless (uiop:featurep :asdf-use-unsafe-mac-bundle-op)
(cerror "Continue after modifying *FEATURES*." (cerror "Continue after modifying *FEATURES*."
"The BUNDLE-OPs are not supported on Mac OSX for this lisp.~%~TTo continue, push :asdf-use-unsafe-mac-bundle-op on *FEATURES*.~%~TPlease report to ASDF-DEVEL if this works for you."))) "BASIC-FASL-OP bundle operations are not supported on Mac OSX for this lisp.~%~TTo continue, push :asdf-use-unsafe-mac-bundle-op on *FEATURES*.~%~TPlease report to ASDF-DEVEL if this works for you.")))
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