From: Bruno Haible Date: Fri, 26 Dec 2008 11:39:39 +0000 (+0100) Subject: Recognize more architecture names. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8007742f015b762f552fb088ae39007cfcc5068d;p=pspp Recognize more architecture names. --- diff --git a/ChangeLog b/ChangeLog index d0c67765d1..4936022afb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-12-26 Bruno Haible + + * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names + i486, i586, i686. + 2008-12-26 Bruno Haible * lib/stdlib.in.h (struct random_data): Fix indentation of comments. diff --git a/m4/multiarch.m4 b/m4/multiarch.m4 index fa03ceef74..d857599d6b 100644 --- a/m4/multiarch.m4 +++ b/m4/multiarch.m4 @@ -1,4 +1,4 @@ -# multiarch.m4 serial 1 +# multiarch.m4 serial 2 dnl Copyright (C) 2008 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -38,7 +38,7 @@ AC_DEFUN([gl_MULTIARCH], for word in ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}; do if test -n "$prev"; then case $word in - i386 | x86_64 | ppc | ppc64) + i?86 | x86_64 | ppc | ppc64) if test -z "$arch" || test "$arch" = "$word"; then arch="$word" else