From: Matthias Klose Date: Fri, 30 Jul 2004 19:08:17 +0000 (+0000) Subject: configure: Add missing 'action' argument to trap. X-Git-Tag: releases/gcc-3.3.5~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ab233b7f8ee29a0587895accba9e18ad20742d8;p=thirdparty%2Fgcc.git configure: Add missing 'action' argument to trap. 2004-07-30 Matthias Klose * configure: Add missing 'action' argument to trap. From-SVN: r85349 --- diff --git a/ChangeLog b/ChangeLog index 694f494b3c47..c1d4c22dbb24 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-07-30 Matthias Klose + + * configure: Add missing 'action' argument to trap. + 2004-05-31 Release Manager * GCC 3.3.4 Released. diff --git a/configure b/configure index d055bd8c18fc..38ef982eb4bd 100755 --- a/configure +++ b/configure @@ -89,7 +89,7 @@ subdirs= target_alias=NOTARGET target_makefile_frag= undefs=NOUNDEFS -version="$Revision: 1.48 $" +version="$Revision: 1.49 $" x11=default bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' @@ -697,7 +697,7 @@ fi if test -f skip-this-dir; then # Perform the same cleanup as the trap handler, minus the "exit 1" of course, # and reset the trap handler. - trap 0 + trap '' 0 rm -rf Makefile* ${tmpdir} # Execute the final clean-up actions ${config_shell} skip-this-dir @@ -1596,7 +1596,7 @@ fi # Perform the same cleanup as the trap handler, minus the "exit 1" of course, # and reset the trap handler. rm -rf ${tmpdir} -trap 0 +trap '' 0 exit 0