Somehow had the solaris template names reversed. Probably was something

fixed in src/configure.in a while ago.
This commit is contained in:
Thomas G. Lockhart 1998-11-04 16:22:09 +00:00
parent ccca422abb
commit f47bd801e3
2 changed files with 4 additions and 5 deletions

View File

@ -6,7 +6,6 @@
#
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
#
# Defaults:
ac_help=
@ -604,8 +603,8 @@ echo "$ac_t""$host" 1>&6
case "$host_os" in
solaris*)
case "$host_cpu" in
sparc) os=sparc_solaris ;;
i386) os=i386_solaris ;;
sparc) os=solaris_sparc ;;
i386) os=solaris_i386 ;;
esac ;;
sunos*) os=sunos4 ;;
aux*) os=aux ;;

View File

@ -37,8 +37,8 @@ AC_CANONICAL_HOST
case "$host_os" in
solaris*)
case "$host_cpu" in
sparc) os=sparc_solaris ;;
i386) os=i386_solaris ;;
sparc) os=solaris_sparc ;;
i386) os=solaris_i386 ;;
esac ;;
sunos*) os=sunos4 ;;
aux*) os=aux ;;