patches/gcc/2.95.3/160-trap-posix.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed May 20 20:13:13 2009 +0000 (2009-05-20)
changeset 1345 27fec561af53
parent 402 197e1b49586e
permissions -rw-r--r--
Merge the uClinux/noMMU stuff back to /trunk:
- merge Linux and uClinux back to a single kernel
- add ARCH_USE_MMU and acquainted config options that
architectures can auto-select
- make binutils and elf2flt two "Binary utilities" that
go in a single common sub-{menu,directory} structure

-------- diffstat follows --------
/trunk/scripts/build/kernel/uclinux.sh | 2 0 2 0 -
/trunk/scripts/build/kernel/linux.sh | 206 204 2 0 +++++++++++++++++++++++++++++
/trunk/scripts/build/kernel/linux-common.sh | 198 0 198 0 ----------------------------
/trunk/scripts/build/binutils.sh | 232 0 232 0 --------------------------------
/trunk/scripts/build/elf2flt.sh | 150 0 150 0 ---------------------
/trunk/scripts/crosstool-NG.sh.in | 6 4 2 0 +
/trunk/config/kernel/linux.in | 249 249 0 0 +++++++++++++++++++++++++++++++++++
/trunk/config/kernel/linux.in-common | 252 0 252 0 -----------------------------------
/trunk/config/kernel/uclinux.in | 21 0 21 0 ---
/trunk/config/target.in | 23 22 1 0 +++
/trunk/config/elf2flt.in | 49 0 49 0 -------
/trunk/config/libc/glibc.in | 2 1 1 0
/trunk/config/libc/eglibc.in | 2 1 1 0
/trunk/config/config.in | 1 0 1 0 -
/trunk/config/arch/sh.in | 1 1 0 0 +
/trunk/config/arch/arm.in | 2 1 1 0
/trunk/config/arch/powerpc.in | 1 1 0 0 +
/trunk/config/arch/ia64.in | 1 1 0 0 +
/trunk/config/arch/alpha.in | 1 1 0 0 +
/trunk/config/arch/x86.in | 1 1 0 0 +
/trunk/config/arch/mips.in | 1 1 0 0 +
/trunk/config/arch/powerpc64.in | 1 1 0 0 +
22 files changed, 489 insertions(+), 913 deletions(-)
     1 # 
     2 # Submitted-By: Marc Kleine-Budde <mkl@pengutronix.de>, 2005-04-20
     3 #
     4 # Error:
     5 #
     6 # creating libintl.h
     7 # Configuring etc...
     8 # loading cache ../config.cache
     9 # checking for a BSD compatible install... (cached) /usr/bin/install -c
    10 # creating ./config.status
    11 # creating Makefile
    12 # trap: usage: trap [-lp] [[arg] signal_spec ...]
    13 #
    14 # Description:
    15 #
    16 # non-posix conform usage of trap causes bash >= 3.0 to fail
    17 # e.g.: http://sourceware.org/ml/crossgcc/2004-12/msg00132.html
    18 #
    19 # Status:
    20 #
    21 # fixed in gcc >= 3.3.5
    22 # backport of gcc-3.3.5 fix
    23 #
    24 diff -ruN gcc-2.95.3-orig/configure gcc-2.95.3/configure
    25 --- gcc-2.95.3-orig/configure	1999-04-02 16:17:40.000000000 +0200
    26 +++ gcc-2.95.3/configure	2005-04-20 18:25:45.030488235 +0200
    27 @@ -687,7 +687,7 @@
    28  if test -f skip-this-dir; then
    29  	# Perform the same cleanup as the trap handler, minus the "exit 1" of course,
    30  	# and reset the trap handler.
    31 -	trap 0
    32 +	trap '' 0
    33  	rm -f Makefile* ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos
    34  	# Execute the final clean-up actions
    35  	${config_shell} skip-this-dir
    36 @@ -1599,7 +1599,7 @@
    37  # Perform the same cleanup as the trap handler, minus the "exit 1" of course,
    38  # and reset the trap handler.
    39  rm -f ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos
    40 -trap 0
    41 +trap '' 0
    42  
    43  exit 0
    44