git: 926b73117918 - main - Mk/Uses/vala.mk: remove powerpc conditional since clang condition fixes other build failures on powerpc

From: Piotr Kubaj <pkubaj_at_FreeBSD.org>
Date: Wed, 31 Jan 2024 08:22:33 UTC
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=926b73117918979bf5f6ca10356fd94db564513c

commit 926b73117918979bf5f6ca10356fd94db564513c
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2024-01-31 08:20:15 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2024-01-31 08:22:30 +0000

    Mk/Uses/vala.mk: remove powerpc conditional since clang condition fixes other build failures on powerpc
---
 Mk/Uses/vala.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Mk/Uses/vala.mk b/Mk/Uses/vala.mk
index a43969807a8a..b15c15461e30 100644
--- a/Mk/Uses/vala.mk
+++ b/Mk/Uses/vala.mk
@@ -25,7 +25,7 @@ BUILD_DEPENDS+=		${_VALA_BINARY}:${_VALA_PORT}
 
 # remove after https://gitlab.gnome.org/GNOME/vala/-/issues/1408 is fixed
 .include "${USESDIR}/compiler.mk"
-.  if ${ARCH} != powerpc && ${CHOSEN_COMPILER_TYPE} == "clang"
+.  if ${CHOSEN_COMPILER_TYPE} == "clang"
 CFLAGS+=	-Wno-error=incompatible-function-pointer-types
 .  endif