diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-03 22:58:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-03 22:58:09 +0000 |
commit | bbadb23926a1f873777e9a48da93934c1f94d0b9 (patch) | |
tree | 08fc7181d49a04b0c0afd4cfbe15dede56892eb4 /configure.in | |
parent | c401a34f0106f6b18eca8952a0ab04d77f2e1724 (diff) |
2002-04-27 Roland McGrath <roland@frob.com>
* configure.in: Match $host_cpu of powerpc*, not just powerpc.
Match $host_cpu of alpha* to set asm_syntax=alpha.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 9fdd7211..3603403f 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_REVISION([$Id: configure.in,v 1.30 2002/03/15 09:51:54 roland Exp $]) +AC_REVISION([$Id: configure.in,v 1.31 2002/05/03 22:58:09 roland Exp $]) AC_PREREQ(2.12) dnl Minimum Autoconf version required. AC_INIT(hurd/hurd_types.h) dnl A distinctive file to look for in srcdir. @@ -20,10 +20,13 @@ none) AC_MSG_ERROR([ esac case "$host_cpu" in +alpha*) + asm_syntax=alpha + ;; i?86) asm_syntax=i386 ;; -powerpc) +powerpc*) asm_syntax=ppc ;; *) |