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