mirror of
http://github.com/valkey-io/valkey
synced 2024-11-21 16:46:15 +00:00
Update musl libc detection pattern (#10826)
This change fixes failing `integration/logging.tcl` test in Gentoo with musl libc, where `ldd` returns ``` libc.so => /lib/ld-musl-x86_64.so.1 (0x7f9d5f171000) ``` unlike Alpine's ``` libc.musl-x86_64.so.1 => /lib/ld-musl-x86_64.so.1 (0x7f82cfa16000) ``` The solution is to extend matching pattern introduced in #8532.
This commit is contained in:
parent
ae9764ea0a
commit
f22bfe86b6
@ -9,7 +9,7 @@ if {$system_name eq {darwin}} {
|
||||
} elseif {$system_name eq {linux}} {
|
||||
# Avoid the test on libmusl, which does not support backtrace
|
||||
set ldd [exec ldd src/redis-server]
|
||||
if {![string match {*libc.musl*} $ldd]} {
|
||||
if {![string match {*libc.*musl*} $ldd]} {
|
||||
set backtrace_supported 1
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user