about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1996-02-12 20:44:56 +0000
committerPer Bothner <per@bothner.com>1996-02-12 20:44:56 +0000
commit889a9677fdb9ff83965e80eba373ba90d8afaa51 (patch)
tree1071e5b503e2628de794b94b9a1603bb8a559596
parent25f9784eb8e54e720b24e8f2999765aa37bfb578 (diff)
downloadglibc-889a9677fdb9ff83965e80eba373ba90d8afaa51.tar.gz
glibc-889a9677fdb9ff83965e80eba373ba90d8afaa51.tar.xz
glibc-889a9677fdb9ff83965e80eba373ba90d8afaa51.zip
* config.guess: Support m68k-cbm-sysv4. * config.guess (*:Linux:*:*): Guess m68k-unknown-linux
-rwxr-xr-xconfig.guess13
1 files changed, 10 insertions, 3 deletions
diff --git a/config.guess b/config.guess
index af106b2f8a..dc83e59c8c 100755
--- a/config.guess
+++ b/config.guess
@@ -62,6 +62,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
     21064:Windows_NT:50:3)
 	echo alpha-dec-winnt3.5
 	exit 0 ;;
+    Amiga*:UNIX_System_V:4.0:*)
+	echo m68k-cbm-sysv4
+	exit 0;;
     amiga:NetBSD:*:*)
       echo m68k-cbm-netbsd${UNAME_RELEASE}
       exit 0 ;;
@@ -327,12 +330,16 @@ EOF
 	# The BFD linker knows what the default object file format is, so
 	# first see if it will tell us.
 	ld_help_string=`ld --help 2>&1`
-	if echo $ld_help_string | grep >/dev/null 2>&1 "supported emulations: elf_i[345]86"; then
+	if echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf_i[345]86"; then
 	  echo "${UNAME_MACHINE}-unknown-linux" ; exit 0
-	elif echo $ld_help_string | grep >/dev/null 2>&1 "supported emulations: i[345]86linux"; then
+	elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i[345]86linux"; then
 	  echo "${UNAME_MACHINE}-unknown-linuxaout" ; exit 0
-	elif echo $ld_help_string | grep >/dev/null 2>&1 "supported emulations: i[345]86coff"; then
+	elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i[345]86coff"; then
 	  echo "${UNAME_MACHINE}-unknown-linuxcoff" ; exit 0
+	elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68kelf"; then
+	  echo "${UNAME_MACHINE}-unknown-linux" ; exit 0
+	elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68klinux"; then
+	  echo "${UNAME_MACHINE}-unknown-linuxaout" ; exit 0
 	elif test "${UNAME_MACHINE}" = "alpha" ; then
 	  echo alpha-unknown-linux ; exit 0
 	else