From 04621aa849f312a91db00d4ea6787bce42f3a6a5 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 27 Sep 2021 09:40:02 -0400 Subject: Fix error messages when loading a libary fails. --- chickadee/config.scm.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chickadee/config.scm.in b/chickadee/config.scm.in index 2a43918..26874b9 100644 --- a/chickadee/config.scm.in +++ b/chickadee/config.scm.in @@ -39,8 +39,8 @@ ;; library load path as a fallback method. Useful when restributing ;; relocatable builds. (define (dynamic-link* names) - (let loop ((names names)) - (match names + (let loop ((names* names)) + (match names* (() (error "could not find library" names)) ((name . rest) -- cgit v1.2.3