From 1427f8c929f024a4945675cf07e673cba9e376a3 Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Sun, 11 Apr 1999 04:34:22 +0000 Subject: [PATCH] 1999-04-11 Philipp Thomas * config.sub: Set basic_machine to i586 when target_alias = k6-*. --- ChangeLog | 4 ++++ config.sub | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9f81dde5..d2b1cc8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-04-11 Philipp Thomas + + * config.sub: Set basic_machine to i586 when target_alias = k6-*. + 1999-04-11 Pavel Roskin * autoheader.m4: Do not complain about using AC_TRY_RUN without a diff --git a/config.sub b/config.sub index 692de9b6..33a3f60c 100755 --- a/config.sub +++ b/config.sub @@ -484,19 +484,19 @@ case $basic_machine in pc532 | pc532-*) basic_machine=ns32k-pc532 ;; - pentium | p5 | k5 | nexen) + pentium | p5 | k5 | k6 | nexen) basic_machine=i586-pc ;; - pentiumpro | p6 | k6 | 6x86) + pentiumpro | p6 | 6x86) basic_machine=i686-pc ;; pentiumii | pentium2) basic_machine=i786-pc ;; - pentium-* | p5-* | k5-* | nexen-*) + pentium-* | p5-* | k5-* | k6-* | nexen-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; - pentiumpro-* | p6-* | k6-* | 6x86-*) + pentiumpro-* | p6-* | 6x86-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-*)