yann@402: # yann@402: # Submitted-By: Marc Kleine-Budde , 2005-04-20 yann@402: # yann@402: # Error: yann@402: # yann@402: # creating libintl.h yann@402: # Configuring etc... yann@402: # loading cache ../config.cache yann@402: # checking for a BSD compatible install... (cached) /usr/bin/install -c yann@402: # creating ./config.status yann@402: # creating Makefile yann@402: # trap: usage: trap [-lp] [[arg] signal_spec ...] yann@402: # yann@402: # Description: yann@402: # yann@402: # non-posix conform usage of trap causes bash >= 3.0 to fail yann@402: # yann@402: # e.g.: http://sourceware.org/ml/crossgcc/2004-12/msg00132.html yann@402: # yann@402: # Status: yann@402: # yann@402: # fixed in gcc >= 3.3.5 yann@402: # backport of gcc-3.3.5 fix yann@402: # yann@402: diff -ruN gcc-3.2.3-orig/configure gcc-3.2.3/configure yann@402: --- gcc-3.2.3-orig/configure 2002-06-24 18:14:28.000000000 +0200 yann@402: +++ gcc-3.2.3/configure 2005-04-20 18:42:49.000000000 +0200 yann@402: @@ -697,7 +697,7 @@ yann@402: if test -f skip-this-dir; then yann@402: # Perform the same cleanup as the trap handler, minus the "exit 1" of course, yann@402: # and reset the trap handler. yann@402: - trap 0 yann@402: + trap '' 0 yann@402: rm -rf Makefile* ${tmpdir} yann@402: # Execute the final clean-up actions yann@402: ${config_shell} skip-this-dir yann@402: @@ -1615,7 +1615,7 @@ yann@402: # Perform the same cleanup as the trap handler, minus the "exit 1" of course, yann@402: # and reset the trap handler. yann@402: rm -rf ${tmpdir} yann@402: -trap 0 yann@402: +trap '' 0 yann@402: yann@402: exit 0 yann@402: