* config.guess: about target *-hitachi-hiuxwe2, fixed

machine guessing order.  [Hitachi's CPU_IS_HP_MC68K
	macro is incorrect.]
This commit is contained in:
Per Bothner 1994-03-15 18:56:22 +00:00
parent f93b941bde
commit e7b02f0e49
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
* config.guess: about target *-hitachi-hiuxwe2, fixed
machine guessing order. [Hitachi's CPU_IS_HP_MC68K
macro is incorrect.]
Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com) Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* Makefile.in (TAGS): Just build TAGS in each subdirectory, rather * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather

6
config.guess vendored
View File

@ -133,9 +133,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
main () main ()
{ {
long cpu = sysconf (_SC_CPU_VERSION); long cpu = sysconf (_SC_CPU_VERSION);
if (CPU_IS_HP_MC68K (cpu)) if (CPU_IS_PA_RISC (cpu))
puts ("m68k-hitachi-hiuxwe2");
else if (CPU_IS_PA_RISC (cpu))
{ {
switch (cpu) switch (cpu)
{ {
@ -145,6 +143,8 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
default: puts ("hppa-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break;
} }
} }
if (CPU_IS_HP_MC68K (cpu))
puts ("m68k-hitachi-hiuxwe2");
else puts ("unknown-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2");
exit (0); exit (0);
} }