patches/gcc/2.95.3/160-gcc-2.95.3-trap-posix.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jun 30 21:41:32 2008 +0000 (2008-06-30)
changeset 636 92f2e82084cd
permissions -rw-r--r--
Update samples to the latest architecture framework.

/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 57 32 25 0 +++++++-----
/trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 60 34 26 0 +++++++------
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 43 23 20 0 +++++----
/trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 57 32 25 0 +++++++-----
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config | 46 26 20 0 ++++++----
/trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 56 30 26 0 ++++++------
/trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config | 43 23 20 0 +++++----
/trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 53 27 26 0 ++++++-----
/trunk/samples/i586-geode-linux-uclibc/crosstool.config | 43 23 20 0 +++++----
/trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 49 29 20 0 ++++++-----
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 51 26 25 0 ++++++-----
/trunk/samples/i686-nptl-linux-gnu/crosstool.config | 43 23 20 0 +++++----
/trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 44 21 23 0 ++++------
13 files changed, 349 insertions(+), 296 deletions(-)
yann@402
     1
# 
yann@402
     2
# Submitted-By: Marc Kleine-Budde <mkl@pengutronix.de>, 2005-04-20
yann@402
     3
#
yann@402
     4
# Error:
yann@402
     5
#
yann@402
     6
# creating libintl.h
yann@402
     7
# Configuring etc...
yann@402
     8
# loading cache ../config.cache
yann@402
     9
# checking for a BSD compatible install... (cached) /usr/bin/install -c
yann@402
    10
# creating ./config.status
yann@402
    11
# creating Makefile
yann@402
    12
# trap: usage: trap [-lp] [[arg] signal_spec ...]
yann@402
    13
#
yann@402
    14
# Description:
yann@402
    15
#
yann@402
    16
# non-posix conform usage of trap causes bash >= 3.0 to fail
yann@402
    17
# e.g.: http://sourceware.org/ml/crossgcc/2004-12/msg00132.html
yann@402
    18
#
yann@402
    19
# Status:
yann@402
    20
#
yann@402
    21
# fixed in gcc >= 3.3.5
yann@402
    22
# backport of gcc-3.3.5 fix
yann@402
    23
#
yann@402
    24
diff -ruN gcc-2.95.3-orig/configure gcc-2.95.3/configure
yann@402
    25
--- gcc-2.95.3-orig/configure	1999-04-02 16:17:40.000000000 +0200
yann@402
    26
+++ gcc-2.95.3/configure	2005-04-20 18:25:45.030488235 +0200
yann@402
    27
@@ -687,7 +687,7 @@
yann@402
    28
 if test -f skip-this-dir; then
yann@402
    29
 	# Perform the same cleanup as the trap handler, minus the "exit 1" of course,
yann@402
    30
 	# and reset the trap handler.
yann@402
    31
-	trap 0
yann@402
    32
+	trap '' 0
yann@402
    33
 	rm -f Makefile* ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos
yann@402
    34
 	# Execute the final clean-up actions
yann@402
    35
 	${config_shell} skip-this-dir
yann@402
    36
@@ -1599,7 +1599,7 @@
yann@402
    37
 # Perform the same cleanup as the trap handler, minus the "exit 1" of course,
yann@402
    38
 # and reset the trap handler.
yann@402
    39
 rm -f ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos
yann@402
    40
-trap 0
yann@402
    41
+trap '' 0
yann@402
    42
 
yann@402
    43
 exit 0
yann@402
    44