From 88dfb290b5bb4372d249c50e06e7619a5e4afedf Mon Sep 17 00:00:00 2001 From: Ian Leonard Date: Sat, 30 Jan 2021 01:11:05 +0000 Subject: [PATCH] strace: dont build 32bit support for aarch64 32-bit binaries shouldn't be present in said build. Presently, it errors with: checking for m32 personality compile support (using -I. )... no checking whether to enable m32 personality support... no configure: error: Cannot enable m32 personality support Signed-off-by: Ian Leonard --- packages/debug/strace/package.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/debug/strace/package.mk b/packages/debug/strace/package.mk index 72c8c15a75..6fc5951c21 100644 --- a/packages/debug/strace/package.mk +++ b/packages/debug/strace/package.mk @@ -11,6 +11,6 @@ PKG_DEPENDS_TARGET="toolchain" PKG_LONGDESC="strace is a diagnostic, debugging and instructional userspace utility" PKG_TOOLCHAIN="autotools" -if [ "${TARGET_ARCH}" = x86_64 ]; then +if [ "${TARGET_ARCH}" = x86_64 -o "${TARGET_ARCH}" = "aarch64" ]; then PKG_CONFIGURE_OPTS_TARGET="--enable-mpers=no" fi