package/pixman: really enable NEON support on AArch64

The test to enable NEON on AArch64 is as following:

ifeq ($(BR2_aarch64)$(BR2_ARM_CPU_HAS_NEON),yy)

It cannot be to true as $(BR2_aarch64) and $(BR2_ARM_CPU_HAS_NEON) are
mutually exclusive. NEON is compulsory on AArch64 so remove
$(BR2_ARM_CPU_HAS_NEON) from the test.

Fixes: ba2fb599cd ("package/pixman: bump to version 0.44.2")
Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Sébastien Szymanski
2025-12-17 12:56:13 +01:00
committed by Thomas Petazzoni
parent 0e5eef911c
commit d297569eb4

View File

@@ -68,7 +68,7 @@ else
PIXMAN_CONF_OPTS += -Dneon=disabled
endif
ifeq ($(BR2_aarch64)$(BR2_ARM_CPU_HAS_NEON),yy)
ifeq ($(BR2_aarch64),y)
PIXMAN_CONF_OPTS += -Da64-neon=enabled
else
PIXMAN_CONF_OPTS += -Da64-neon=disabled