From 2ec80f0dba77dc2bcb2b2283198472adb132a199 Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Sun, 26 Dec 2010 23:25:09 +1100 Subject: [PATCH] Revert due to problems with the Tru64 shell. From Urs Jan?en. 2010-04-03 Wolfram Sang * config.guess: Use signal names instead of numbers with trap. --- ChangeLog | 6 ++++++ config.guess | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index cae8132..e9525fb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-12-26 Ben Elliston + + Revert due to problems with the Tru64 shell. From Urs Jan?en. + 2010-04-03 Wolfram Sang + * config.guess: Use signal names instead of numbers with trap. + 2010-12-11 Masaki Muranaka * config.sub: Accept cr16-*-elf. diff --git a/config.guess b/config.guess index 4c8f032..4b76f3c 100755 --- a/config.guess +++ b/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. -timestamp='2010-09-24' +timestamp='2010-12-26' # 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 @@ -92,7 +92,7 @@ if test $# != 0; then exit 1 fi -trap 'exit 1' HUP INT TERM +trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires @@ -106,7 +106,7 @@ trap 'exit 1' HUP INT TERM set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; -trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" HUP INT PIPE TERM ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||