From 989670e56bfc54efb19e4cec01eb2b71b2ccd460 Mon Sep 17 00:00:00 2001
From: "Robert P. Goldman" <rpgoldman@gmail.com>
Date: Mon, 20 Jan 2014 20:55:34 -0600
Subject: [PATCH] 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.
---
 bundle.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bundle.lisp b/bundle.lisp
index 41dbbe2d..8cb31bcc 100644
--- a/bundle.lisp
+++ b/bundle.lisp
@@ -493,8 +493,8 @@
 
 #+(and (not asdf-use-unsafe-mac-bundle-op)
        (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))
   (unless (uiop:featurep :asdf-use-unsafe-mac-bundle-op)
     (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.")))
-- 
GitLab