diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-09-27 08:21:27 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-09-27 08:21:27 -0400 |
commit | a0bd894bbc01c9897a6dbe4d5da0528f6aa495de (patch) | |
tree | 17cb2b1beb26e176a580c8b37c8a8933c7637afd /sdl2 | |
parent | e7a60aad528806a0c783189d2ead25340c8f2ed4 (diff) |
Fix error reporting when dynamic-link fails.
Diffstat (limited to 'sdl2')
-rw-r--r-- | sdl2/config.scm.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdl2/config.scm.in b/sdl2/config.scm.in index b1343dd..290dd6e 100644 --- a/sdl2/config.scm.in +++ b/sdl2/config.scm.in @@ -12,8 +12,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) |