From e94492abb5225138a548d2208c00e4e58d273dd1 Mon Sep 17 00:00:00 2001
From: Francois-Rene Rideau <tunes@google.com>
Date: Wed, 5 Mar 2014 15:42:54 -0500
Subject: [PATCH] ECL: don't enable load-fasl-op with the bytecode compiler.

---
 bundle.lisp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/bundle.lisp b/bundle.lisp
index 41bbc0b4..06956869 100644
--- a/bundle.lisp
+++ b/bundle.lisp
@@ -454,7 +454,8 @@ itself.")) ;; operation on a system and its dependencies
 
 #+ecl
 (with-upgradability ()
-  (setf *load-system-operation* 'load-fasl-op)
+  (unless (use-ecl-byte-compiler-p)
+    (setf *load-system-operation* 'load-fasl-op))
 
   (defmethod perform ((o link-op) (c system))
     (let* ((object-files (input-files o c))
-- 
GitLab