Commit 72ed3675 authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer
Browse files

- pull POSIX compliance fixes from upstream

parent f1c7af30
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -7,8 +7,8 @@ D/scripts////
D/src////
D/tests////
D/testsuite////
/ChangeLog/1.384/Mon Jul  9 16:57:20 2007//
/Makefile/1.6/Mon Sep 26 07:33:33 2005//
/config.guess/1.366/Mon Jul  9 16:57:20 2007//
/config.sub/1.356/Mon Jul  9 16:57:20 2007//
/uname/1.5/Mon Jul  9 16:57:20 2007//
/ChangeLog/1.387/Thu Sep 20 16:47:12 2007//
/config.guess/1.368/Thu Sep 20 16:47:12 2007//
/config.sub/1.356/Thu Sep 20 16:47:05 2007//
/uname/1.5/Tue Aug 21 18:37:34 2007//
+15 −0
Original line number Diff line number Diff line
2007-07-25  Mike Frysinger  <vapier@gentoo.org>

	* testsuite/config-guess.sh (run_config_guess): Do not prefix with
	"function" as this is not permitted by POSIX.
	* testsuite/config-sub.sh (run_config_sub): Likewise.

2007-07-24  Ben Elliston  <bje@gnu.org>

	* config.guess: Remove trailing whitespace.

2007-07-22  Ben Elliston  <bje@gnu.org>

	Reported by Luke Mewburn <luke@mewburn.net>:
	* config.guess: Fix typo ix86xen -> i86xen.

2007-06-28  Ben Elliston  <bje@gnu.org>

	From M R Swami Reddy <MR.Swami.Reddy@nsc.com>:
+3 −3
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
#   Inc.

timestamp='2007-05-17'
timestamp='2007-07-22'

# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -347,7 +347,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
	exit ;;
    i86pc:SunOS:5.*:* | ix86xen:SunOS:5.*:*)
    i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
	echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
	exit ;;
    sun4*:SunOS:6*:*)
+4 −4
Original line number Diff line number Diff line
/.cvsignore/1.1/Mon Sep 26 07:33:33 2005//
/config-guess.data/1.37/Mon Jul  9 16:57:20 2007//
/config-guess.sh/1.4/Mon Sep 26 07:33:33 2005//
/config-sub.data/1.47/Mon Jul  9 16:57:20 2007//
/config-sub.sh/1.2/Mon Sep 26 07:33:33 2005//
/uname.in/1.1/Mon Sep 26 07:33:33 2005//
/config-guess.data/1.38/Thu Sep 20 16:47:13 2007//
/config-guess.sh/1.5/Thu Sep 20 16:47:13 2007//
/config-sub.data/1.47/Tue Aug 21 18:37:33 2007//
/config-sub.sh/1.3/Thu Sep 20 16:47:13 2007//
D
+1 −1
Original line number Diff line number Diff line
@@ -31,4 +31,4 @@ xtensa 2.6.15 Linux ignored xtensa-unknown-linux-gnu
x86_64	1.0			MINGW		ignored	x86_64-pc-mingw32
i386	1.0			MINGW		ignored	i386-pc-mingw32
SX-8R	1.0			SUPER-UX	ignored	sx8r-nec-superux1.0
ix86xen	5.6			SunOS		ignored	i386-pc-solaris2.6
i86xen	5.6			SunOS		ignored	i386-pc-solaris2.6
Loading