mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
foreign-library: fix darwin detection
* module/system/foreign-library.scm (system-library-extensions): fix darwin host detection. darwin host types have "-darwin" but not "-darwin-".
This commit is contained in:
parent
9a62f7caca
commit
1f100a4f20
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@
|
|||
|
||||
(define system-library-extensions
|
||||
(cond
|
||||
((string-contains %host-type "-darwin-")
|
||||
((string-contains %host-type "-darwin")
|
||||
'(".bundle" ".so" ".dylib"))
|
||||
((or (string-contains %host-type "cygwin")
|
||||
(string-contains %host-type "mingw")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue