Fix broken 32-bit x86 test that broke builds on non-x86

This commit is contained in:
Oliver Jowett 2021-03-17 02:21:18 +08:00
parent 037fe4f37f
commit 455896e86d
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ ifeq ($(CPUFEATURES_ARCH),x86_64)
CPUFEATURES_OBJS += cpu_features/src/cpuinfo_x86.o
endif
ifneq ($(filter-out $(CPUFEATURES_ARCH),i%86),)
ifneq (,$(filter i%86,$(CPUFEATURES_ARCH)))
CPUFEATURES_OBJS += cpu_features/src/cpuinfo_x86.o
endif