Thanks Dmitry! On Wed, 29 Jan 2014, Dmitry Gorbachev wrote: > This patch is to fix `md5sum: WARNING: 1 line is improperly formatted' thing.
It would have been helpful to indicate what the actual problem was; at first I did not see that indeed it was an empty line in MD5SUMS that was causing the problem. I updated the ChangeLog entry and committed the following patch to mainline and the GCC 4.8 branch. Gerald 2014-02-01 Dmitry Gorbachev <d.g.gorbac...@gmail.com> PR other/56653 * gcc_release: Avoid printing empty line to generated MD5SUMS files. Bump copyright year. Index: gcc_release =================================================================== --- gcc_release (revision 207366) +++ gcc_release (working copy) @@ -9,7 +9,7 @@ # Contents: # Script to create a GCC release. # -# Copyright (c) 2001, 2002, 2006, 2009, 2010, 2011 Free Software Foundation. +# Copyright (c) 2001-2014 Free Software Foundation. # # This file is part of GCC. # @@ -213,7 +213,7 @@ # # Suggested usage: # md5sum -c MD5SUMS | grep -v \"OK$\" -" > MD5SUMS +#" > MD5SUMS find . -type f | sed -e 's:^\./::' -e '/MD5SUMS/d' |