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
commitf640405cd265d49f5508608d7fa490c8b83e3b40 (patch)
tree6576bca8c758dd8fdf93d6e0996a8404315682b8 /configure.in
parentde9b53a297590226163024626756856f6efc87de (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
;;
*)