diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-09-27 09:40:02 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-09-28 08:02:39 -0400 |
commit | 04621aa849f312a91db00d4ea6787bce42f3a6a5 (patch) | |
tree | 285b0c668e1f7691c03bf204a57c604253e90209 | |
parent | d77cac2415db3ff6576b3f1c080b3322d727338d (diff) |
Fix error messages when loading a libary fails.
-rw-r--r-- | chickadee/config.scm.in | 4 |
1 files 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) |