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 <antonlacon@gmail.com>
This commit is contained in:
Ian Leonard 2021-01-30 01:11:05 +00:00
parent 2474e5eab3
commit 88dfb290b5

View File

@ -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