summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-05-03 22:58:09 +0000
committerRoland McGrath <roland@gnu.org>2002-05-03 22:58:09 +0000
commitbbadb23926a1f873777e9a48da93934c1f94d0b9 (patch)
tree08fc7181d49a04b0c0afd4cfbe15dede56892eb4 /configure.in
parentc401a34f0106f6b18eca8952a0ab04d77f2e1724 (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.in7
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
;;
*)