patches/gcc/3.3.3/gcc-3.3.3-trap-posix.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
permissions -rw-r--r--
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
     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-3.3.3-orig/configure gcc-3.3.3/configure
    25 --- gcc-3.3.3-orig/configure	2002-09-29 18:11:24.000000000 +0200
    26 +++ gcc-3.3.3/configure	2005-04-20 21:03:51.000000000 +0200
    27 @@ -697,7 +697,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 -rf Makefile* ${tmpdir}
    34  	# Execute the final clean-up actions
    35  	${config_shell} skip-this-dir
    36 @@ -1596,7 +1596,7 @@
    37  # Perform the same cleanup as the trap handler, minus the "exit 1" of course,
    38  # and reset the trap handler.
    39  rm -rf ${tmpdir}
    40 -trap 0
    41 +trap '' 0
    42  
    43  exit 0
    44