From 30c73852af41a4b237a2f6eac829e9e8b92379bd Mon Sep 17 00:00:00 2001
From: Francois-Rene Rideau <tunes@google.com>
Date: Mon, 17 Feb 2014 21:11:17 -0500
Subject: [PATCH] Fix a bug for input-files on compiled-file (!)

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

diff --git a/bundle.lisp b/bundle.lisp
index 038716e36..a36fff7e1 100644
--- a/bundle.lisp
+++ b/bundle.lisp
@@ -316,7 +316,7 @@ itself.")) ;; operation on a system and its dependencies
     (every #'(lambda (c) (typep c 'compiled-file)) (component-children s)))
 
   (defmethod input-files ((o operation) (c compiled-file))
-    (component-pathname c))
+    (list (component-pathname c)))
   (defmethod perform ((o load-op) (c compiled-file))
     (perform-lisp-load-fasl o c))
   (defmethod perform ((o load-source-op) (c compiled-file))
-- 
GitLab