[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#88913: config.guess incorrectly detects m68k as a.out system



Package: apt
Version: 0.5.2
Severity: important
Tags: patch

config.guess incorrectly detects m68k as m68k-unknown-linux-gnuaout (instead
of m68k-unknown-linux-gnu) which disables dynamic libraries which makes the
packaging later on break. The patch below fixes this.

-Michael


diff -urN apt-0.5.2.orig/buildlib/config.guess apt-0.5.2/buildlib/config.guess
--- apt-0.5.2.orig/buildlib/config.guess	Tue Feb 27 05:14:22 2001
+++ apt-0.5.2/buildlib/config.guess	Wed Mar  7 20:13:23 2001
@@ -757,7 +757,7 @@
 	echo ${UNAME_MACHINE}-unknown-linux
 	exit 0 ;;
     m68*:Linux:*:*)
-	echo ${UNAME_MACHINE}-unknown-linux-gnuaout
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit 0 ;;
     mips:Linux:*:*)
 	cat >$dummy.c <<EOF



Reply to: