New comment by ahesford on void-packages repository https://github.com/void-linux/void-packages/pull/45816#issuecomment-1701861438 Comment: > do i add > > ``` > if [ "$XBPS_TARGET_LIBC" -eq "musl"]; then > makedepends+=" libexecinfo" > fi > ``` > > for musl builds? It would be `if [ "$XBPS_TARGET_LIBC" = "musl"];` (not `-eq`, which will attempt an integer comparison), but you're right that `libexecinfo` should be made available for musl builds.