From 764d66832640fbe6ae9d320073bd07c2af4de322 Mon Sep 17 00:00:00 2001 From: Ville Syrjälä Date: Wed, 12 Oct 2016 19:03:49 +0300 Subject: build: Fix assmebler/etc. tools build for 32bit x86 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Match the i?86 pattern when looking for an x86 to catch 32bit build systems as well. Cc: Daniel Stone Cc: Eric Anholt Fixes: bccc0ec6a3fd ("build: Disable x86-specific utilities on non-x86") Signed-off-by: Ville Syrjälä Reviewed-by: Joonas Lahtinen --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 1f3d0dee..735cfd59 100644 --- a/configure.ac +++ b/configure.ac @@ -123,7 +123,7 @@ PKG_CHECK_MODULES(DRM, [libdrm]) PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10]) case "$target_cpu" in - x86*) + x86*|i?86) build_x86="yes" ;; *) -- cgit v1.2.3