From 455896e86db84d10a197f5a3f88d13c0539ad470 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Wed, 17 Mar 2021 02:21:18 +0800 Subject: [PATCH] Fix broken 32-bit x86 test that broke builds on non-x86 --- Makefile.cpufeatures | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.cpufeatures b/Makefile.cpufeatures index 12377ad..8c3b841 100644 --- a/Makefile.cpufeatures +++ b/Makefile.cpufeatures @@ -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