Currently, 32-bit x86 host may end up using linux ARCH as the host identifier is not recognized. Fix this by mapping i686* to ARCH x86.
Signed-off-by: Matias Elo <[email protected]> --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 723c957..5e7e380 100644 --- a/configure.ac +++ b/configure.ac @@ -60,6 +60,7 @@ AX_VALGRIND_CHECK ########################################################################## AS_CASE([$host], [x86*], [ARCH=x86], + [i686*], [ARCH=x86], [mips64*], [ARCH=mips64], [powerpc*], [ARCH=powerpc], [ARCH=linux] -- 1.9.1 _______________________________________________ lng-odp mailing list [email protected] https://lists.linaro.org/mailman/listinfo/lng-odp
