]> git.eshelyaron.com Git - emacs.git/commitdiff
Recognize alpha* instead of just alpha.
authorRichard M. Stallman <rms@gnu.org>
Sat, 13 Sep 1997 19:47:52 +0000 (19:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 13 Sep 1997 19:47:52 +0000 (19:47 +0000)
configure.in

index be1035197872a8f6ad59f71d716b74dda09228ab..7f4af864cbf28dc4b7f066009d2d543343d1398a 100644 (file)
@@ -163,7 +163,7 @@ case "${canonical}" in
   *-*-netbsd* )
     opsys=netbsd
     case "${canonical}" in
-      alpha-*-netbsd*) machine=alpha ;;
+      alpha*-*-netbsd*)        machine=alpha ;;
       i[3456]86-*-netbsd*) machine=intel386 ;;
       m68k-*-netbsd*)
                        # This is somewhat bogus.
@@ -179,7 +179,7 @@ case "${canonical}" in
   *-*-openbsd* )
     opsys=openbsd
     case "${canonical}" in
-      alpha-*-openbsd*)        machine=alpha ;;
+      alpha*-*-openbsd*)       machine=alpha ;;
       i386-*-openbsd*) machine=intel386 ;;
       m68k-*-openbsd*)  machine=hp9000s300 ;;
       mipsel-*-openbsd*) machine=pmax ;;
@@ -229,14 +229,14 @@ case "${canonical}" in
   ;;
 
   ## Alpha (DEC) machines.
-  alpha-dec-osf* )
+  alpha*-dec-osf* )
     machine=alpha opsys=osf1
     # This is needed to find X11R6.1 libraries for certain tests.
     NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
     GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
   ;;
 
-  alpha-*-linux-gnu* )
+  alpha*-*-linux-gnu* )
     machine=alpha opsys=gnu-linux
   ;;