Merge pull request #5063 from antonlacon/strace-aarch64

strace: dont build 32bit support for aarch64
This commit is contained in:
Matthias Reichl 2021-01-30 10:36:25 +01:00 committed by GitHub
commit 74cd52108b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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