From: Slava Sysoltsev Date: Wed, 9 Apr 2008 16:46:08 +0000 (-0600) Subject: Flush buffered output before exit. X-Git-Tag: v2.63~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ee48b2c8b2b83482fccd773df08cdac66cce493;p=thirdparty%2Fautoconf.git Flush buffered output before exit. * bin/autom4te.in (handle_output): Explicitly close file. * THANKS: Update. See http://lists.gnu.org/archive/html/autoconf/2008-04/msg00026.html. --- diff --git a/ChangeLog b/ChangeLog index 8c06f67a3..70528e516 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-04-09 Slava Sysoltsev (tiny change) + + Flush buffered output before exit. + * bin/autom4te.in (handle_output): Explicitly close file. + * THANKS: Update. + See http://lists.gnu.org/archive/html/autoconf/2008-04/msg00026.html. + 2008-04-08 Eric Blake Generate web docs for 2.62. diff --git a/THANKS b/THANKS index 5df250d03..5ec892190 100644 --- a/THANKS +++ b/THANKS @@ -305,6 +305,7 @@ Sebastian Freundt hroptatyr@gna.org Sergey Poznyakoff ? Simon Josefsson jas@extundo.com Simon Leinen simon@lia.di.epfl.ch +Slava Sysoltsev Viatcheslav.Sysoltsev@h-d-gmbh.de Stefan Seefeld stefan@codesourcery.com Stefan `Sec' Zehl ? Stepan Kasal kasal@ucw.cz diff --git a/bin/autom4te.in b/bin/autom4te.in index 99b48f8e4..1f9aee8d9 100644 --- a/bin/autom4te.in +++ b/bin/autom4te.in @@ -596,6 +596,8 @@ sub handle_output ($$) print $out "$res\n"; } + $out->close(); + # If no forbidden words, we're done. return if ! %prohibited;