~ubuntu-branches/ubuntu/natty/eog/natty

« back to all changes in this revision

Viewing changes to config.guess

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-06-22 22:40:44 UTC
  • mfrom: (1.14.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100622224044-dwxx7h6hl0n0b0lk
Tags: 2.30.2-0ubuntu1
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5
5
#   Free Software Foundation, Inc.
6
6
 
7
 
timestamp='2009-12-30'
 
7
timestamp='2010-04-03'
8
8
 
9
9
# This file is free software; you can redistribute it and/or modify it
10
10
# under the terms of the GNU General Public License as published by
92
92
  exit 1
93
93
fi
94
94
 
95
 
trap 'exit 1' 1 2 15
 
95
trap 'exit 1' HUP INT TERM
96
96
 
97
97
# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
98
98
# compiler to aid in system detection is discouraged as it requires
106
106
 
107
107
set_cc_for_build='
108
108
trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
109
 
trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
 
109
trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" HUP INT PIPE TERM ;
110
110
: ${TMPDIR=/tmp} ;
111
111
 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
112
112
 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||