strace: fix i686-musl
For i686-musl libunwind requires libucontext also.
This commit is contained in:
parent
e175d9b830
commit
c905ec8936
1 changed files with 7 additions and 0 deletions
|
@ -16,9 +16,16 @@ checksum=fe3982ea4cd9aeb3b4ba35f6279f0b577a37175d3282be24b9a5537b56b8f01c
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
aarch64*|ppc64*) configure_args+=" --enable-mpers=no" ;;
|
aarch64*|ppc64*) configure_args+=" --enable-mpers=no" ;;
|
||||||
# work around https://github.com/strace/strace/issues/133
|
# work around https://github.com/strace/strace/issues/133
|
||||||
|
i686-musl) configure_args+=" --enable-mpers=no"; makedepends+=" libucontext-devel" ;;
|
||||||
x86_64-musl) configure_args+=" --enable-mpers=no" ;;
|
x86_64-musl) configure_args+=" --enable-mpers=no" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
pre_configure() {
|
||||||
|
if [ "$XBPS_TARGET_MACHINE" = "i686-musl" ]; then
|
||||||
|
vsed -i configure -e "s;libunwind_LIBS=$;&-lucontext;"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
do_check() {
|
do_check() {
|
||||||
if [ "$XBPS_CHECK_PKGS" = full ]; then
|
if [ "$XBPS_CHECK_PKGS" = full ]; then
|
||||||
# XXX: Some tests may fail inside of containers or if they are missing
|
# XXX: Some tests may fail inside of containers or if they are missing
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue