In commit "f1e4ba13d (build: disable sparse-llvm on non-x86)", we wanted to disable the build of sparse-llvm on non-x86 archs but the pattern used also excluded machines like 'i686'. Fix this by using the pattern 'i[3456]86' instead. Fixes: f1e4ba13d1499407a72349b50052ae818c8d8553 Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eac6df7ed..1ae0a33f0 100644 --- a/Makefile +++ b/Makefile @@ -142,7 +142,7 @@ endif LLVM_CONFIG:=llvm-config HAVE_LLVM:=$(shell $(LLVM_CONFIG) --version >/dev/null 2>&1 && echo 'yes') ifeq ($(HAVE_LLVM),yes) -ifeq ($(shell uname -m | grep -q '\(i386\|x86\)' && echo ok),ok) +ifeq ($(shell uname -m | grep -q '\(i[3456]86\|x86\)' && echo ok),ok) LLVM_VERSION:=$(shell $(LLVM_CONFIG) --version) ifeq ($(shell expr "$(LLVM_VERSION)" : '[3-9]\.'),2) LLVM_PROGS := sparse-llvm -- 2.15.0 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html