main/iproute2: remove elfutil support on ppc64le

Fails to build with: `unknown type name 'Elf64_Relr'`

See #15478
This commit is contained in:
Kevin Daudt 2023-11-14 18:33:46 +00:00
parent 5d303c952a
commit 25ca7faef0

View File

@ -15,7 +15,6 @@ depends="
makedepends="
bash
bison
elfutils-dev
libcap-dev
libmnl-dev
flex
@ -37,6 +36,11 @@ options="!check" # requires namespaces support and root
# 5.1.0-r0:
# - CVE-2019-20795
case $CARCH in
ppc64le) ;;
*) makedepends="$makedepends elfutils-dev";;
esac
build() {
export CFLAGS="$CFLAGS -flto=auto"
make V=1