From 5eca3749ac131d2314d0846bbf1803e830619be6 Mon Sep 17 00:00:00 2001
From: Francois-Rene Rideau <fare@tunes.org>
Date: Thu, 20 Jul 2017 09:49:37 -0400
Subject: [PATCH] Fix output-translations in tools/load-asdf.lisp

This should make it work on a stricter modern CLISP.
---
 tools/load-asdf.lisp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/load-asdf.lisp b/tools/load-asdf.lisp
index 1675f114f..5a9edb41c 100644
--- a/tools/load-asdf.lisp
+++ b/tools/load-asdf.lisp
@@ -122,7 +122,8 @@
                         ;; Segregate output by ABI.
                         ;; You could replace "asdf" below by the name of your project,
                         ;; or not need it at all if everything is under your source-directory.
-                        (,source-directory (,output-directory :implementation "asdf"))
+                        ((,source-directory :**/ :*.*.*)
+                         (,output-directory :implementation "asdf" :**/ :*.*.*))
                         ;; In a fully controlled build, we shouldn't be using code outside
                         ;; our source-directory, but in case we do, we still want to control the output,
                         ;; and easily detect the fact by looking at this directory
-- 
GitLab